Skip to content

Commit 3671696

Browse files
author
ClouSale
committed
Fix exception
1 parent e1ad494 commit 3671696

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)