Merge remote-tracking branch 'upstream/4.4' into 4.4-4.5-2014-10-01-19-08-00
[civicrm-core.git] / Civi / API / Exception / NotImplementedException.php
1 <?php
2 namespace Civi\API\Exception;
3
4 require_once 'api/Exception.php';
5
6 /**
7 * Class NotImplementedException
8 * @package Civi\API\Exception
9 */
10 class NotImplementedException extends \API_Exception {
11 /**
12 * @param string $message
13 * @param array $extraParams
14 * @param Exception $previous
15 */
16 public function __construct($message, $extraParams = array(), Exception $previous = NULL) {
17 parent::__construct($message, \API_Exception::NOT_IMPLEMENTED, $extraParams, $previous);
18 }
19 }