ConfigException.php 428 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Lithium: the most rad php framework
  4. *
  5. * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
  6. * @license http://opensource.org/licenses/bsd-license.php The BSD License
  7. */
  8. namespace lithium\core;
  9. /**
  10. * A `ConfigException` is thrown when a request is made to render content in a format not
  11. * supported.
  12. */
  13. class ConfigException extends \RuntimeException {
  14. protected $code = 500;
  15. }
  16. ?>