Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
2 / 2 |
NoConstructorException | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
__construct | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
1 | <?php |
2 | |
3 | namespace Qmp\Laravel\MongoJsExecutor\Exceptions; |
4 | |
5 | use Exception; |
6 | |
7 | |
8 | class NoConstructorException extends Exception |
9 | { |
10 | /** |
11 | * Undocumented function |
12 | */ |
13 | public function __construct() |
14 | { |
15 | parent::__construct($this->message); |
16 | } |
17 | } |