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