summaryrefslogtreecommitdiffstats
path: root/application/exceptions/ApiException.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/exceptions/ApiException.php')
-rw-r--r--application/exceptions/ApiException.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/exceptions/ApiException.php b/application/exceptions/ApiException.php
index b3b9decff..b1ec96117 100644
--- a/application/exceptions/ApiException.php
+++ b/application/exceptions/ApiException.php
@@ -10,9 +10,9 @@ class ApiException extends \Exception {
private $error_id;
private $data;
- public function __construct($error_id, $message, $data = null)
+ public function __construct($error_id, $message, $data = null, $previous = null)
{
- parent::__construct($message);
+ parent::__construct($message, 0, $previous);
$this->error_id = $error_id;
$this->data = $data;