Move HttpExceptions to their own namespace
This commit is contained in:
parent
1e32c66cb5
commit
982e048b4f
|
|
@ -15,7 +15,9 @@
|
||||||
* @license MIT
|
* @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.
|
* Base exception for HTTP-related errors. Also represents a 500 Internal Server error.
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
namespace pjdietz\WellRESTed;
|
namespace pjdietz\WellRESTed;
|
||||||
|
|
||||||
use pjdietz\WellRESTed\Exceptions\HttpException;
|
use pjdietz\WellRESTed\Exceptions\HttpExceptions\HttpException;
|
||||||
use pjdietz\WellRESTed\Interfaces\HandlerInterface;
|
use pjdietz\WellRESTed\Interfaces\HandlerInterface;
|
||||||
use pjdietz\WellRESTed\Interfaces\ResponseInterface;
|
use pjdietz\WellRESTed\Interfaces\ResponseInterface;
|
||||||
use pjdietz\WellRESTed\Interfaces\RequestInterface;
|
use pjdietz\WellRESTed\Interfaces\RequestInterface;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue