1 | <?php |
||
2 | |||
3 | namespace TarfinLabs\Netgsm\Exceptions; |
||
4 | |||
5 | use Exception; |
||
6 | use Throwable; |
||
7 | |||
8 | abstract class AbstractNetgsmException extends Exception |
||
9 | { |
||
10 | public function __construct($message = '', $code = 0, Throwable $previous = null) |
||
11 | { |
||
12 | parent::__construct(trans($message), $code, $previous); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
13 | } |
||
14 | } |
||
15 |