Completed
Push — Laravel4 ( 02d48b...8c5149 )
by Travis
03:47 queued 03:02
created

UnrecognizedId   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 1 Features 0
Metric Value
wmc 1
c 2
b 1
f 0
lcom 0
cbo 0
dl 0
loc 10
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php namespace Syntax\SteamApi\Exceptions;
2
3
class UnrecognizedId extends \Exception {
4
5
	/**
6
	 * @param string $message
7
	 */
8
	public function __construct($message, $code = 0, $previous = null)
9
	{
10
		parent::__construct($message, $code, $previous);
11
	}
12
}