InvalidSchema::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 * @copyright 2018 Aleksander Stelmaczonek <[email protected]>
4
 * @license   MIT License, see license file distributed with this source code
5
 */
6
7
namespace Koriit\PHPDeps\Config\Exceptions;
8
9
use Exception;
10
11
class InvalidSchema extends Exception
12
{
13
    public function __construct($cause = null)
14
    {
15
        parent::__construct('File does not pass schema validation', 0, $cause);
16
    }
17
}
18