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