Files
oficial/app/common/Implement/Exception/HttpException.php
2025-06-10 19:36:56 -04:00

14 lines
294 B
PHP

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