Completed
Push — master ( 8a65c2...f8bd36 )
by Jean-Christophe
01:34
created

NormalizerException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 3
1
<?php
2
3
namespace Ubiquity\exceptions;
4
5
6
/**
7
 * Normalizer Exceptions
8
 * @author jc
9
 *
10
 */
11
class NormalizerException extends UbiquityException{
12
	public function __construct($message=null,$code=null,$previous=null){
13
		parent::__construct($message, $code, $previous);
14
	}
15
}
16