mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
Add newsletter management functionality
This commit is contained in:
parent
90ee0a93c9
commit
b0197d189a
57 changed files with 1017 additions and 143 deletions
11
lib/Exceptions/WebhookException.php
Normal file
11
lib/Exceptions/WebhookException.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?
|
||||
namespace Exceptions;
|
||||
|
||||
class WebhookException extends SeException{
|
||||
public $PostData;
|
||||
|
||||
public function __construct(string $message = '', string $data = null){
|
||||
$this->PostData = $data;
|
||||
parent::__construct($message);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue