ExpiredTokenException.php 212 B

123456789101112
  1. <?php
  2. namespace OAuth\Common\Token\Exception;
  3. use OAuth\Common\Exception\Exception;
  4. /**
  5. * Exception thrown when an expired token is attempted to be used.
  6. */
  7. class ExpiredTokenException extends Exception
  8. {
  9. }