TemplateException.php 552 B

123456789101112131415161718192021
  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\template;
  9. /**
  10. * A `TemplateException` is thrown whenever a view template cannot be found, or a called template is
  11. * not readable or accessible for rendering. Also used by the view compiler if a compiled template
  12. * cannot be written.
  13. */
  14. class TemplateException extends \RuntimeException {
  15. protected $code = 500;
  16. }
  17. ?>