Passed
Pull Request — develop_3.0 (#510)
by Adrien
03:43
created

InvalidValueException::getInvalidValue()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
3
namespace Box\Spout\Reader\Exception;
4
5
use Throwable;
6
7
/**
8
 * Class InvalidValueException
9
 */
10
class InvalidValueException extends ReaderException
11
{
12
    /** @var mixed */
13
    private $invalidValue;
14
15
    /**
16
     * @param mixed $invalidValue
17
     * @param string $message
18
     * @param int $code
19
     * @param Throwable|null $previous
20
     */
21 6
    public function __construct($invalidValue, $message = '', $code = 0, Throwable $previous = null)
22
    {
23 6
        $this->invalidValue = $invalidValue;
24 6
        parent::__construct($message, $code, $previous);
25 6
    }
26
27
    /**
28
     * @return mixed
29
     */
30 2
    public function getInvalidValue()
31
    {
32 2
        return $this->invalidValue;
33
    }
34
}
35