| 1: | <?php |
| 2: | namespace Worldline\Connect\Sdk\Webhooks; |
| 3: | |
| 4: | use Exception; |
| 5: | use RuntimeException; |
| 6: | |
| 7: | /** |
| 8: | * Class SignatureValidationException |
| 9: | * |
| 10: | * @package Worldline\Connect\Sdk\Webhooks |
| 11: | */ |
| 12: | class SignatureValidationException extends RuntimeException |
| 13: | { |
| 14: | /** |
| 15: | * @param string $message |
| 16: | * @param Exception $previous |
| 17: | */ |
| 18: | public function __construct($message = null, $previous = null) |
| 19: | { |
| 20: | parent::__construct($message, 0, $previous); |
| 21: | } |
| 22: | } |
| 23: |