Passed
Push — master ( 7d2b7a...0ea348 )
by Jean-Christophe
02:57
created

RestException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 3
dl 0
loc 2
ccs 0
cts 2
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
namespace Ubiquity\exceptions;
3
4
5
/**
6
 * Exceptions for Rest service
7
 * @author jc
8
 *
9
 */
10
class RestException extends UbiquityException{
11
	public function __construct($message=null,$code=null,$previous=null){
12
		parent::__construct($message, $code, $previous);
13
	}
14
}
15