dolibarr/htdocs/includes/OAuth/Common/Token/Exception/ExpiredTokenException.php

13 lines
212 B
PHP
Raw Permalink Normal View History

2015-10-21 18:23:35 +02:00
<?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
{
}