mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
11 lines
229 B
PHP
11 lines
229 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class WebhookException extends AppException{
|
|
public $PostData;
|
|
|
|
public function __construct(string $message = '', string $data = null){
|
|
$this->PostData = $data;
|
|
parent::__construct($message);
|
|
}
|
|
}
|