From 40490db27f932441f4a65e0c356eea35580baeae Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Tue, 24 Dec 2013 17:01:29 +0000 Subject: [PATCH] Added ServerException --- .../Server/Exception/ServerException.php | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/League/OAuth2/Server/Exception/ServerException.php diff --git a/src/League/OAuth2/Server/Exception/ServerException.php b/src/League/OAuth2/Server/Exception/ServerException.php new file mode 100644 index 00000000..4827f47f --- /dev/null +++ b/src/League/OAuth2/Server/Exception/ServerException.php @@ -0,0 +1,20 @@ + + * @copyright Copyright (c) 2013 PHP League of Extraordinary Packages + * @license http://mit-license.org/ + * @link http://github.com/php-loep/oauth2-server + */ + +namespace League\OAuth2\Server\Exception; + +/** + * Server Exception + */ +class ServerException extends OAuth2Exception +{ + +} \ No newline at end of file