mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
21 lines
370 B
PHP
21 lines
370 B
PHP
<?php
|
|
/**
|
|
* OAuth 2.0 Base Exception
|
|
*
|
|
* @package lncd/oauth2
|
|
* @author Alex Bilbie <hello@alexbilbie.com>
|
|
* @copyright Copyright (c) 2013 University of Lincoln
|
|
* @license http://mit-license.org/
|
|
* @link http://github.com/lncd/oauth2
|
|
*/
|
|
|
|
namespace OAuth2\Exception;
|
|
|
|
/**
|
|
* Exception class
|
|
*/
|
|
class OAuth2Exception extends \Exception
|
|
{
|
|
|
|
}
|