12 lines
131 B
PHP
12 lines
131 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Exceptions;
|
||
|
|
|
||
|
|
use Exception;
|
||
|
|
use Throwable;
|
||
|
|
|
||
|
|
class GenericPaymentDriverFailure extends Exception
|
||
|
|
{
|
||
|
|
// ..
|
||
|
|
}
|