Completed
Push — master ( 201db3...6560f2 )
by Milan
01:44
created

IdentificationNumberNotFoundException   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 20
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A getIn() 0 4 1
1
<?php declare(strict_types=1);
2
3
namespace h4kuna\Ares\Exceptions;
4
5
use Throwable;
6
7
class IdentificationNumberNotFoundException extends AresException
8
{
9
10
	/** @var int */
11
	private $in;
12
13
14
	public function __construct($message = "", $in = 0, Throwable $previous = null)
15
	{
16
		parent::__construct($message, 0, $previous);
17
		$this->in = $in;
18
	}
19
20
21
	public function getIn(): int
22
	{
23
		return $this->in;
24
	}
25
26
}