comment fixes
[civicrm-core.git] / api / Exception.php
index 7f0186b88f10be4119bef6ec1a9e2c34c58dc468..8ec7eb3ae6a8212a13e790b1b6fa02d247dae97f 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * @file
  * File for the CiviCRM APIv3 API wrapper
  *
  * @package CiviCRM_APIv3
@@ -23,6 +24,8 @@ class API_Exception extends Exception {
   private $extraParams = array();
 
   /**
+   * Class constructor.
+   *
    * @param string $message
    *   The human friendly error message.
    * @param mixed $error_code
@@ -74,6 +77,7 @@ class API_Exception extends Exception {
       self::NOT_IMPLEMENTED => 'Entity or method is not implemented',
     );
   }
+
 }
 
 /**
@@ -122,4 +126,5 @@ class CiviCRM_API3_Exception extends Exception {
   public function getExtraParams() {
     return $this->extraParams;
   }
+
 }