summaryrefslogtreecommitdiffstats
path: root/lib/SparkPost/APIResponseException.php
diff options
context:
space:
mode:
authorAvi Goldman <avrahamymgoldman@gmail.com>2016-06-24 15:51:34 -0400
committerAvi Goldman <avrahamymgoldman@gmail.com>2016-06-24 15:51:34 -0400
commit55d1bdc1ac65d63df6490f588f3d6e9eb506da79 (patch)
treeb21a8ac66224692fe10b2a3cced0374d18ee7de1 /lib/SparkPost/APIResponseException.php
parent1b61a81471fc46cde5a515381e9642e0c884481c (diff)
parent12f363bb1f99891fb4b105009d20c596c35c87ae (diff)
downloadphp-sparkpost-55d1bdc1ac65d63df6490f588f3d6e9eb506da79.zip
php-sparkpost-55d1bdc1ac65d63df6490f588f3d6e9eb506da79.tar.gz
php-sparkpost-55d1bdc1ac65d63df6490f588f3d6e9eb506da79.tar.bz2
merged in 2x
Diffstat (limited to 'lib/SparkPost/APIResponseException.php')
-rw-r--r--lib/SparkPost/APIResponseException.php62
1 files changed, 0 insertions, 62 deletions
diff --git a/lib/SparkPost/APIResponseException.php b/lib/SparkPost/APIResponseException.php
deleted file mode 100644
index a491b3c..0000000
--- a/lib/SparkPost/APIResponseException.php
+++ /dev/null
@@ -1,62 +0,0 @@
-<?php
-
-namespace SparkPost;
-
-class APIResponseException extends \Exception
-{
- /**
- * @var string
- */
- protected $apiMessage;
-
- /**
- * @var int
- */
- protected $apiCode;
-
- /**
- * @var string
- */
- protected $apiDescription;
-
- /**
- * Construct the exception.
- */
- public function __construct($message = '', $code = 0, $apiMessage = '', $apiCode = 0, $apiDescription = '')
- {
- $this->apiMessage = $apiMessage;
- $this->apiCode = $apiCode;
- $this->apiDescription = $apiDescription;
- parent::__construct($message, $code);
- }
-
- /**
- * Gets the Exception message.
- *
- * @return string the Exception message as a string.
- */
- public function getAPIMessage()
- {
- return $this->apiMessage;
- }
-
- /**
- * Gets the API Exception code.
- *
- * @return int the exception code as integer.
- */
- public function getAPICode()
- {
- return $this->apiCode;
- }
-
- /**
- * Gets the Exception description.
- *
- * @return string the Exception description as a string.
- */
- public function getAPIDescription()
- {
- return $this->apiDescription;
- }
-}