feature/cierres #25

Open
aldarien wants to merge 446 commits from feature/cierres into develop
263 changed files with 1343 additions and 9416 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);
}
}