OutOfSequenceException.php 1.7 KB

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