Test Failed
Push — master ( 02d5fc...a9d814 )
by Evgenii
39:43
created

BinaryNotFoundException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 6
1
<?php
2
3
4
namespace floor12\backup\Exceptions;
5
6
use ErrorException;
7
8
class BinaryNotFoundException extends ErrorException
9
{
10
    public function __construct($message = "", $code = 0, $severity = 1, $filename = __FILE__, $line = __LINE__, $previous = null)
11
    {
12
        parent::__construct("Binary not found: {$message}", $code, $severity, $filename, $line, $previous);
13
    }
14
}