feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
279 changed files with 1364 additions and 10465 deletions
Showing only changes of commit c2f98c8b0d - Show all commits

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