Excepcion

This commit is contained in:
Juan Pablo Vial
2025-05-09 18:04:37 -04:00
parent 8d73987ac3
commit c2f98c8b0d

View 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);
}
}