MissingRefreshTokenException.php 357 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @author David Desberg <david@daviddesberg.com>
  4. * Released under the MIT license.
  5. */
  6. namespace OAuth\OAuth2\Service\Exception;
  7. use OAuth\Common\Exception\Exception;
  8. /**
  9. * Exception thrown when service is requested to refresh the access token but no refresh token can be found.
  10. */
  11. class MissingRefreshTokenException extends Exception
  12. {
  13. }