* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://wiki.jasig.org/display/CASC/phpCAS */ /** * This class defines Exceptions that should be thrown when the sequence of * operations is invalid. In this case it should be thrown when an * authentication call has not yet happened. * * @class CAS_OutOfSequenceBeforeAuthenticationCallException * @category Authentication * @package PhpCAS * @author Joachim Fritschi * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://wiki.jasig.org/display/CASC/phpCAS */ class CAS_OutOfSequenceBeforeAuthenticationCallException extends CAS_OutOfSequenceException implements CAS_Exception { /** * Return standard error meessage * * @return void */ public function __construct () { parent::__construct('An authentication call hasn\'t happened yet.'); } }