Passed
Push — master ( e44489...51d43e )
by Bobby
09:09
created

TypeSchemaValidationException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 1 Features 1
Metric Value
eloc 2
dl 0
loc 6
ccs 2
cts 2
cp 1
rs 10
c 1
b 1
f 1
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace Ballen\Cartographer\Exceptions;
3
4
/**
5
 * Cartographer
6
 *
7
 * Cartographer is a PHP library providing the ability to programmatically
8
 * generate GeoJSON objects.
9
 *
10
 * @author Bobby Allen <[email protected]>
11
 * @license http://www.gnu.org/licenses/gpl-3.0.html
12
 * @link https://github.com/allebb/cartographer
13
 * @link http://bobbyallen.me
14
 *
15
 */
16
class TypeSchemaValidationException extends \Exception
17
{
18
19 8
    public function __construct($message, $code = 0, Exception $previous = null)
0 ignored issues
show
Bug introduced by
The type Ballen\Cartographer\Exceptions\Exception was not found. Did you mean Exception? If so, make sure to prefix the type with \.
Loading history...
20
    {
21 8
        parent::__construct($message, $code, $previous);
22 8
    }
23
}
24