diff options
author | beardyman <nornholdj@gmail.com> | 2016-02-23 00:31:15 -0500 |
---|---|---|
committer | beardyman <nornholdj@gmail.com> | 2016-02-23 00:31:15 -0500 |
commit | 267b9c7c3c856fc081450cc8f796dd38ce664f39 (patch) | |
tree | 0b681600d3ebacaec5f8aac5410bec4e8eb7dce5 /lib | |
parent | 547f84d69ab1ca529b112aab43aa6f5b901aaa25 (diff) | |
download | php-sparkpost-267b9c7c3c856fc081450cc8f796dd38ce664f39.zip php-sparkpost-267b9c7c3c856fc081450cc8f796dd38ce664f39.tar.gz php-sparkpost-267b9c7c3c856fc081450cc8f796dd38ce664f39.tar.bz2 |
added new exception type and unwrapped example for webhooks
Diffstat (limited to 'lib')
-rw-r--r-- | lib/SparkPost/APIResponseException.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/SparkPost/APIResponseException.php b/lib/SparkPost/APIResponseException.php new file mode 100644 index 0000000..cc0842c --- /dev/null +++ b/lib/SparkPost/APIResponseException.php @@ -0,0 +1,9 @@ +<?php + +namespace SparkPost; + +class APIResponseException extends \Exception { + +} + +?> |