Completed
Push — master ( a48513...213d8d )
by Jean-Christophe
01:39
created

CacheException   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
namespace Ubiquity\exceptions;
3
4
5
/**
6
 * Exceptions for Cache
7
 * @author jc
8
 *
9
 */
10
class CacheException extends UbiquityException{
11
	public function __construct($message=null,$code=null,$previous=null){
12
		parent::__construct($message, $code, $previous);
13
	}
14
}
15