Adding template engine
Adding error handling Adding basic SMTP class core routing is working
This commit is contained in:
18
system/engine/exceptions.php
Normal file
18
system/engine/exceptions.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
//Original idea by http://www.php.net/manual/en/function.set-error-handler.php#112881
|
||||
|
||||
class WarningException extends ErrorException {}
|
||||
class ParseException extends ErrorException {}
|
||||
class NoticeException extends ErrorException {}
|
||||
class CoreErrorException extends ErrorException {}
|
||||
class CoreWarningException extends ErrorException {}
|
||||
class CompileErrorException extends ErrorException {}
|
||||
class CompileWarningException extends ErrorException {}
|
||||
class UserErrorException extends ErrorException {}
|
||||
class UserWarningException extends ErrorException {}
|
||||
class UserNoticeException extends ErrorException {}
|
||||
class StrictException extends ErrorException {}
|
||||
class RecoverableErrorException extends ErrorException {}
|
||||
class DeprecatedException extends ErrorException {}
|
||||
class UserDeprecatedException extends ErrorException {}
|
Reference in New Issue
Block a user