RuntimeException::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 2
1
<?php
2
3
namespace HelePartnerSyncApi;
4
5
use Exception as BaseException;
6
use HelePartnerSyncApi\Exception as HeleException;
7
use RuntimeException as BaseRuntimeException;
8
9
abstract class RuntimeException extends BaseRuntimeException implements HeleException
10
{
11
12
	public function __construct($message, BaseException $previous = null)
13
	{
14
		parent::__construct($message, 0, $previous);
15
	}
16
17
}
18