13 lines
296 B
PHP
13 lines
296 B
PHP
|
<?php
|
||
|
namespace Incoviba\Exception\Model;
|
||
|
|
||
|
use Throwable;
|
||
|
use Exception;
|
||
|
|
||
|
class InvalidState extends Exception
|
||
|
{
|
||
|
public function __construct(string $message = "Invalid state", int $code = 505, ?Throwable $previous = null)
|
||
|
{
|
||
|
parent::__construct($message, $code, $previous);
|
||
|
}
|
||
|
}
|