* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ namespace PrestaShop\Module\PrestashopCheckout\PayPal\Payment\Refund\Exception; use Exception; class PayPalRefundException extends Exception { const INVALID_ORDER_ID = 1; const INVALID_TRANSACTION_ID = 2; const INVALID_CURRENCY = 3; const INVALID_AMOUNT = 4; const INVALID_REFUND_ID = 4; }