Test Failed
Push — master ( deddec...094fd6 )
by Jean-Christophe
09:22
created

DBException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 4
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
namespace Ubiquity\exceptions;
4
5
class DBException extends UbiquityException {
6
7
	public function __construct($message = null, $code = null, $previous = null) {
8
		parent::__construct ( $message, $code, $previous );
9
	}
10
}
11