mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
20 lines
437 B
PHP
20 lines
437 B
PHP
<?php
|
|
/**
|
|
* OAuth 2.0 Client 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;
|
|
|
|
/**
|
|
* ClientException Exception
|
|
*/
|
|
class ClientException extends OAuth2Exception
|
|
{
|
|
|
|
} |