mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
5e51bcd6e9
Kanboard 1.0.6
12 lines
212 B
PHP
12 lines
212 B
PHP
<?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
|
|
{
|
|
}
|