Merge pull request #2845 from elcapo/activity-contact-api
[civicrm-core.git] / Civi / API / Exception / NotImplementedException.php
1 <?php
2 namespace Civi\API\Exception;
3
4 require_once 'api/Exception.php';
5 class NotImplementedException extends \API_Exception {
6 public function __construct($message, $extraParams = array(), Exception $previous = NULL) {
7 parent::__construct($message, \API_Exception::NOT_IMPLEMENTED, $extraParams, $previous);
8 }
9 }