blob: 26ad6cc5cb18fe362fbdee7bde2040542973cb9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
namespace OAuth\Common\Token\Exception;
use OAuth\Common\Exception\Exception;
/**
* Exception thrown when an expired token is attempted to be used.
*/
class ExpiredTokenException extends Exception
{
}
|