Merge pull request #3745 from colemanw/relMemberApi
[civicrm-core.git] / Civi / API / Exception / NotImplementedException.php
index 69db92e02fb6b9232990296a3a030466f29a8e8b..68ca54478a42b3080026de73bb8d1cf3c215df2c 100644 (file)
@@ -2,8 +2,18 @@
 namespace Civi\API\Exception;
 
 require_once 'api/Exception.php';
+
+/**
+ * Class NotImplementedException
+ * @package Civi\API\Exception
+ */
 class NotImplementedException extends \API_Exception {
+  /**
+   * @param string $message
+   * @param array $extraParams
+   * @param Exception $previous
+   */
   public function __construct($message, $extraParams = array(), Exception $previous = NULL) {
     parent::__construct($message, \API_Exception::NOT_IMPLEMENTED, $extraParams, $previous);
   }
-}
\ No newline at end of file
+}