haplousframework/system/vendor/h2o/errors.php
2016-04-14 22:01:11 -05:00

10 lines
186 B
PHP

<?php
# Errors
class H2o_Error extends Exception {}
class ParseError extends H2o_Error {}
class TemplateNotFound extends H2o_Error {}
class TemplateSyntaxError extends H2o_Error {}
?>