PluginProbe
Authorizer / 2.6.17
Authorizer v2.6.17
3.15.3 3.15.2 3.15.1 3.15.0 3.14.3 3.14.4 3.14.2 3.14.1 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.9.0 2.9.1 2.9.10 2.9.11 2.9.12 2.9.13 2.9.2 2.9.3 2.9.6 All 126 releases
authorizer / vendor / CAS-1.3.5 / CAS / OutOfSequenceException.php

OutOfSequenceException.php in Authorizer 2.6.17, at vendor/CAS-1.3.5/CAS/OutOfSequenceException.php

50 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Licensed to Jasig under one or more contributor license
5 * agreements. See the NOTICE file distributed with this work for
6 * additional information regarding copyright ownership.
7 *
8 * Jasig licenses this file to you under the Apache License,
9 * Version 2.0 (the "License"); you may not use this file except in
10 * compliance with the License. You may obtain a copy of the License at:
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 *
20 *
21 * PHP Version 5
22 *
23 * @file CAS/OutOfSequenceException.php
24 * @category Authentication
25 * @package PhpCAS
26 * @author Adam Franco <afranco@middlebury.edu>
27 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
28 * @link https://wiki.jasig.org/display/CASC/phpCAS
29 */
30
31 /**
32 * This class defines Exceptions that should be thrown when the sequence of
33 * operations is invalid. Examples are:
34 * - Requesting the response before executing a request.
35 * - Changing the URL of a request after executing the request.
36 *
37 * @class CAS_OutOfSequenceException
38 * @category Authentication
39 * @package PhpCAS
40 * @author Adam Franco <afranco@middlebury.edu>
41 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
42 * @link https://wiki.jasig.org/display/CASC/phpCAS
43 */
44 class CAS_OutOfSequenceException
45 extends BadMethodCallException
46 implements CAS_Exception
47 {
48
49 }
50