diff options
author | Malf Furious <m@lfurio.us> | 2016-02-17 20:29:11 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-02-17 20:29:11 -0500 |
commit | c003600effc33db5eef3bb41d8715a3c9daf04b2 (patch) | |
tree | 6f9edad8b5020d9fcec649f6578f6fd9cd36863d /app/model/except.mod.php | |
parent | db6505607b2356e91fe396badf50243407f3345b (diff) | |
download | scrott-c003600effc33db5eef3bb41d8715a3c9daf04b2.tar.gz scrott-c003600effc33db5eef3bb41d8715a3c9daf04b2.zip |
Add 'Except' MVC -- Used to show application exception messages to user
This MVC should be triggered by the root controller if normal routines throw an exception and should pass the exception message to the Except controller.
Diffstat (limited to 'app/model/except.mod.php')
-rw-r--r-- | app/model/except.mod.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/model/except.mod.php b/app/model/except.mod.php new file mode 100644 index 0000000..f456227 --- /dev/null +++ b/app/model/except.mod.php @@ -0,0 +1,15 @@ +<?php + +require_once "model/master.mod.php"; + +class ExceptModel extends MasterModel +{ + /* + * Default action + */ + function deflt() + { + } +} + +?> |