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

@ -1,14 +1,13 @@
<?php
namespace Incoviba\Service\Venta\MediosPago;
use HttpException;
use PDOException;
use Psr\Http\Client\ClientExceptionInterface;
use Psr\Http\Client\ClientInterface;
use Psr\Http\Message\ResponseInterface;
use Incoviba\Common\Define\Repository;
use Incoviba\Common\Ideal\LoggerEnabled;
use Incoviba\Common\Implement\Exception\{EmptyResponse, EmptyResult};
use Incoviba\Common\Implement\Exception\{EmptyResponse, EmptyResult, HttpException};
use Incoviba\Exception\InvalidResult;
abstract class AbstractEndPoint extends LoggerEnabled implements EndPoint