FIX: Add custom HttpException

This commit is contained in:
Juan Pablo Vial
2025-06-10 19:36:56 -04:00
parent b7e0217cf3
commit c02c6eb15c
3 changed files with 14 additions and 3 deletions

View File

@ -0,0 +1,13 @@
<?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);
}
}