Facturacion y Terreno

This commit is contained in:
Juan Pablo Vial
2024-04-18 20:30:26 -04:00
parent a33dd341cd
commit 9388dc17fc
6 changed files with 583 additions and 152 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace Incoviba\Common\Implement\Exception;
use Throwable;
use HttpResponseException;
class HttpResponse extends HttpResponseException
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}