Merge pull request #3539 from totten/master-tx-api
[civicrm-core.git] / CRM / Core / Exception.php
index 3ddc442488ac2485d7b30fa1fa99f9c8ae097c1c..ea319b57369d3df30587d0e0d08959c1df130b4e 100644 (file)
@@ -2,9 +2,9 @@
 
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.3                                                |
+ | CiviCRM version 4.5                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013                                |
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
 
 /**
  * Base class for exceptions generated by CiviCRM.
+ * This Exception returns more information than the default one. We are using it from the
+ * form layer to allow redirects to occur without having redirects in the BAO
+ * @param string $message the human friendly error message
+ * @param string $error_code a computer friendly error code. By convention, no space (but underscore allowed)
+ *  ex: mandatory_missing, duplicate, invalid_format
+ * @param array $data extra params to return. eg an extra array of ids. It is not mandatory, but can help the computer using the api. Keep in mind the api consumer isn't to be trusted. eg. the database password is NOT a good extra data
  */
+
 class CRM_Core_Exception extends PEAR_Exception {
+  private $errorData = array();
+
+  /**
+   * @param $message
+   * @param int $error_code
+   * @param array $errorData
+   * @param null $previous
+   */
+  public function __construct($message, $error_code = 0, $errorData = array(), $previous = null) {
+    parent::__construct(ts($message));
+    $this->errorData = $errorData + array('error_code' => $error_code);
+  }
+
+  // custom string representation of object
+  /**
+   * @return string
+   */
+  public function __toString() {
+    return __CLASS__ . ": [{$this->errorData['error_code']}: {$this->message}\n";
+  }
+
+  public function getErrorCode() {
+    return $this->errorData['error_code'];
+  }
+
+  /**
+   * Return specific error information that can be used for more detailed
+   * error messages or translation.
+   *
+   * This method may be overridden in child exception classes in order
+   * to add functionality not present in PEAR_Exception and is a placeholder
+   * to define API
+   *
+   * The returned array must be an associative array of parameter => value like so:
+   * <pre>
+   * array('name' => $name, 'context' => array(...))
+   * </pre>
+   * @return array
+   */
+  public function getErrorData() {
+    return $this->errorData;
+  }
 }
+