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