CommuniqueException::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
c 2
b 0
f 1
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 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
}