CommuniqueRESTConnectionException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
/**
4
 * This file is part of Communique.
5
 * 
6
 * @author Robert Main
7
 * @package Communique
8
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Communique;
15
16
/**
17
 *
18
 * Exception
19
 *
20
 * This exception is thrown for connection errors when attempting to reach the API.
21
 * 
22
 */
23
class CommuniqueRESTConnectionException extends \Communique\CommuniqueException {
24
	/**
25
	 * Constructor for REST Connection Exception
26
	 * @param String $message A human readable description of the exception
27
	 */
28
	public function __construct($message) {
29
		parent::__construct($message);
30
	}
31
}