Completed
Push — master ( 8237e5...e1b520 )
by Jean-Christophe
02:35
created

DAOException::__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
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
1
<?php
2
3
namespace Ubiquity\exceptions;
4
5
6
class DAOException extends UbiquityException{
7
	public function __construct($message=null,$code=null,$previous=null){
8
		parent::__construct($message, $code, $previous);
9
	}
10
}
11