FilesystemException.php
1 year ago
InvalidConfigurationException.php
1 year ago
InvalidDataException.php
1 year ago
InvalidSignatureException.php
1 year ago
NotFoundException.php
1 year ago
FilesystemException.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Ollyo\PaymentHub\Exceptions; |
| 4 | |
| 5 | use RuntimeException; |
| 6 | use Throwable; |
| 7 | |
| 8 | class FilesystemException extends RuntimeException implements Throwable |
| 9 | { |
| 10 | public function __construct($message = "", $code = 0, Throwable $previous = null) |
| 11 | { |
| 12 | parent::__construct( |
| 13 | $message, |
| 14 | $code, |
| 15 | $previous |
| 16 | ); |
| 17 | } |
| 18 | } |
| 19 |