mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 10:08:27 +01:00
13 lines
212 B
PHP
13 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
|
|
{
|
|
}
|