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

DAOException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
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