dolibarr/htdocs/includes/OAuth/Common/Token/Exception/ExpiredTokenException.php
2024-09-06 20:28:06 +08:00

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
{
}