Extend the default PHP Exception class

This commit is contained in:
Alex Bilbie 2012-07-11 17:03:14 +01:00
parent 7edb832c45
commit 8b7b70f432

View File

@ -22,11 +22,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
namespace OAuth2;
class OAuthServerClientException extends Exception {}
class OAuthServerClientException extends \Exception {}
class OAuthServerUserException extends Exception {}
class OAuthServerUserException extends \Exception {}
class OAuthServerException extends Exception {}
class OAuthServerException extends \Exception {}
class Server
{