haplousframework/system/vendor/h2o/errors.php

10 lines
186 B
PHP
Raw Normal View History

2016-04-15 03:01:11 +00:00
<?php
# Errors
class H2o_Error extends Exception {}
class ParseError extends H2o_Error {}
class TemplateNotFound extends H2o_Error {}
class TemplateSyntaxError extends H2o_Error {}
?>