feature/cierres #25

Open
aldarien wants to merge 458 commits from feature/cierres into develop
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);
}
}