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

CacheException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 3
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