Passed
Push — master ( 0be816...793982 )
by Jean-Christophe
02:53
created

RestException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 3
dl 0
loc 2
ccs 2
cts 2
cp 1
crap 1
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 1
	public function __construct($message=null,$code=null,$previous=null){
12 1
		parent::__construct($message, $code, $previous);
13 1
	}
14
}
15