Excepcion
This commit is contained in:
13
app/src/Exception/InvalidResult.php
Normal file
13
app/src/Exception/InvalidResult.php
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
namespace Incoviba\Exception;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
|
use Throwable;
|
||||||
|
|
||||||
|
class InvalidResult extends Exception
|
||||||
|
{
|
||||||
|
public function __construct(string $message = "", int $code = 404, ?Throwable $previous = null)
|
||||||
|
{
|
||||||
|
parent::__construct($message, $code, $previous);
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user