Move HttpExceptions to their own namespace

This commit is contained in:
PJ Dietz 2014-07-14 01:01:41 -04:00
parent 1e32c66cb5
commit 982e048b4f
2 changed files with 4 additions and 2 deletions

View File

@ -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.

View File

@ -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;