From 5a54560adc80cd3bc0da77b95ca740353fa5c680 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 28 May 2015 01:12:05 +0200 Subject: imagemagick: Use nested exception Signed-off-by: Florian Pritz --- application/exceptions/ApiException.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'application/exceptions') 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; -- cgit v1.2.3-24-g4f1b