ParserException::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
1
<?php
2
3
namespace Scriptotek\SimpleMarcParser;
4
5
class ParserException extends \Exception
6
{
7
    /**
8
     * @param string     $message
9
     * @param int        $code
10
     * @param \Exception $previous
11
     */
12
    public function __construct($message, $code = 0, \Exception $previous = null)
13
    {
14
15
        // make sure everything is assigned properly
16
        parent::__construct($message, $code, $previous);
17
    }
18
}
19