Files
oficial/app/common/Implement/Exception/HttpException.php

14 lines
294 B
PHP
Raw Normal View History

<?php
namespace Incoviba\Common\Implement\Exception;
use Throwable;
use Exception;
class HttpException extends Exception
{
public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}