13 lines
199 B
PHP
13 lines
199 B
PHP
<?php
|
|
|
|
namespace OAuth\Common\Http\Exception;
|
|
|
|
use OAuth\Common\Exception\Exception;
|
|
|
|
/**
|
|
* Exception relating to token response from service.
|
|
*/
|
|
class TokenResponseException extends Exception
|
|
{
|
|
}
|