mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
9 lines
204 B
PHP
9 lines
204 B
PHP
<?
|
|
class WebhookException extends \Exception{
|
|
public $PostData;
|
|
|
|
public function __construct(string $message = '', string $data = null){
|
|
$this->PostData = $data;
|
|
parent::__construct($message);
|
|
}
|
|
}
|