CommuniqueException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 0 Features 1
Metric Value
wmc 1
c 2
b 0
f 1
lcom 0
cbo 0
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
use \Exception;
16
17
/**
18
 *
19
 * Exception
20
 *
21
 * This exception is thrown when problems within the library occur. For example, an interceptor that does not implement the Interceptor interface
22
 * 
23
 */
24
class CommuniqueException extends \Exception {
25
	/**
26
	 * Constructor for general purpose exception
27
	 * @param String $message A human readable description of the exception
28
	 */
29
	public function __construct($message) {
30
		parent::__construct($message);
31
	}
32
}