Added ServerException

This commit is contained in:
Alex Bilbie 2013-12-24 17:01:29 +00:00
parent bc74aff46d
commit 40490db27f

View File

@ -0,0 +1,20 @@
<?php
/**
* OAuth 2.0 Server Exception
*
* @package php-loep/oauth2-server
* @author Alex Bilbie <hello@alexbilbie.com>
* @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
{
}