diff --git a/lib/SellingPartnerOAuthException.php b/lib/SellingPartnerOAuthException.php index 38d5919b..45567601 100644 --- a/lib/SellingPartnerOAuthException.php +++ b/lib/SellingPartnerOAuthException.php @@ -3,7 +3,12 @@ namespace ClouSale\AmazonSellingPartnerAPI; use Exception; +use Throwable; class SellingPartnerOAuthException extends Exception { + public function __construct($message = '', $code = 0, Throwable $previous = null) + { + parent::__construct($message, $code, $previous); + } }