Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #59 from clousale/fix/exception
Browse files Browse the repository at this point in the history
Fix exception
  • Loading branch information
clousale committed Apr 21, 2021
2 parents e1ad494 + 3671696 commit 2e50d4d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/SellingPartnerOAuthException.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit 2e50d4d

Please sign in to comment.