Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
3 / 3 |
FileExtensionException | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
3 / 3 |
__construct | |
100.00% |
1 / 1 |
1 | |
100.00% |
3 / 3 |
1 | <?php |
2 | |
3 | namespace Qmp\Laravel\FileGenerator\Services\FileGenerator\Exceptions; |
4 | |
5 | use Exception; |
6 | use Throwable; |
7 | |
8 | class FileExtensionException extends Exception |
9 | { |
10 | public function __construct($extension, $code = 0, Throwable $previous = null) |
11 | { |
12 | $message = "Unsupported file extension: $extension"; |
13 | parent::__construct($message, $code, $previous); |
14 | } |
15 | } |