Exception::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
1
<?php
2
3
4
/**
5
 * KNUT7 K7F (https://marciozebedeu.com/)
6
 * KNUT7 K7F (tm) : Rapid Development Framework (https://marciozebedeu.com/)
7
 *
8
 * Licensed under The MIT License
9
 * For full copyright and license information, please see the LICENSE.txt
10
 * Redistributions of files must retain the above copyright notice.
11
 *
12
 * @link      https://github.com/knut7/framework/ for the canonical source repository
13
 * @copyright (c) 2015.  KNUT7  Software Technologies AO Inc. (https://marciozebedeu.com/)
14
 * @license   https://marciozebedeu.com/license/new-bsd New BSD License
15
 * @author    Marcio Zebedeu - [email protected]
16
 * @version   1.0.2
17
 */
18
19
namespace Ballybran\Exception;
20
21
22
use Ballybran\Exception\PageError;
23
use Throwable;
24
25
class Exception extends \RuntimeException
26
{
27
28
29
    public function __construct(string $message = "", int $code = 0, Throwable $previous = null)
30
    {
31
        parent::__construct($message, $code, $previous);
32
    }
33
34
}
35