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