PayPalOrderIdException.php
16 lines
| 1 | <?php |
| 2 | namespace Give\PaymentGateways\PayPalCommerce\Exceptions; |
| 3 | |
| 4 | use Give\Framework\Exceptions\Primitives\Exception; |
| 5 | |
| 6 | /** |
| 7 | * @since 2.19.0 |
| 8 | */ |
| 9 | class PayPalOrderIdException extends Exception |
| 10 | { |
| 11 | public function __construct($message = "", $code = 0, $previous = null) |
| 12 | { |
| 13 | parent::__construct($message, $code, $previous); |
| 14 | } |
| 15 | } |
| 16 |