Skip to content

Commit 2e50d4d

Browse files
author
clousale
authored
Merge pull request clousale#59 from clousale/fix/exception
Fix exception
2 parents e1ad494 + 3671696 commit 2e50d4d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/SellingPartnerOAuthException.php

+5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
namespace ClouSale\AmazonSellingPartnerAPI;
44

55
use Exception;
6+
use Throwable;
67

78
class SellingPartnerOAuthException extends Exception
89
{
10+
public function __construct($message = '', $code = 0, Throwable $previous = null)
11+
{
12+
parent::__construct($message, $code, $previous);
13+
}
914
}

0 commit comments

Comments
 (0)