Full implemantation
This commit is contained in:
@ -5,9 +5,9 @@ use Exception;
|
||||
|
||||
class Invalid extends Exception
|
||||
{
|
||||
public function __construct(?Throwable $previous = null)
|
||||
public function __construct(string $mailbox_name, ?Throwable $previous = null)
|
||||
{
|
||||
$message = "Mailbox not found";
|
||||
$message = "Mailbox {$mailbox_name} not found";
|
||||
$code = 100;
|
||||
parent::__construct($message, $code, $previous);
|
||||
}
|
||||
|
Reference in New Issue
Block a user