Passed
Push — master ( fb9395...699f58 )
by Bobby
09:02
created

GPIOException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 3
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
1
<?php
2
namespace Ballen\GPIO\Exceptions;
3
4
use Throwable;
5
6
/**
7
 * GPIO
8
 * A RaspberryPi GPIO library written in PHP.
9
 *
10
 * @author Bobby Allen <[email protected]>
11
 * @license http://www.gnu.org/licenses/gpl-3.0.html
12
 * @link https://github.com/allebb/gpio
13
 * @link http://www.bobbyallen.me
14
 * @package Ballen\GPIO\Exceptions
15
 */
16
class GPIOException extends \Exception
17
{
18
19 6
    public function __construct($message = "", $code = 0, Throwable $previous = null)
20
    {
21 6
        parent::__construct($message, $code, $previous);
22
    }
23
}