diff --git a/src/pjdietz/WellRESTed/Exceptions/HttpExceptions.php b/src/pjdietz/WellRESTed/Exceptions/HttpExceptions.php index 74c50d1..8c90194 100644 --- a/src/pjdietz/WellRESTed/Exceptions/HttpExceptions.php +++ b/src/pjdietz/WellRESTed/Exceptions/HttpExceptions.php @@ -15,7 +15,9 @@ * @license MIT */ -namespace pjdietz\WellRESTed\Exceptions; +namespace pjdietz\WellRESTed\Exceptions\HttpExceptions; + +use pjdietz\WellRESTed\Exceptions\WellRESTedException; /** * Base exception for HTTP-related errors. Also represents a 500 Internal Server error. diff --git a/src/pjdietz/WellRESTed/Handler.php b/src/pjdietz/WellRESTed/Handler.php index c68bec6..17e694c 100644 --- a/src/pjdietz/WellRESTed/Handler.php +++ b/src/pjdietz/WellRESTed/Handler.php @@ -10,7 +10,7 @@ namespace pjdietz\WellRESTed; -use pjdietz\WellRESTed\Exceptions\HttpException; +use pjdietz\WellRESTed\Exceptions\HttpExceptions\HttpException; use pjdietz\WellRESTed\Interfaces\HandlerInterface; use pjdietz\WellRESTed\Interfaces\ResponseInterface; use pjdietz\WellRESTed\Interfaces\RequestInterface;