diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-02-09 07:25:35 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-09 07:25:35 -0500 |
commit | 5466f6a6d0950331a4cb54e09b44ea4524751fb4 (patch) | |
tree | 6bcbafb19e7d1713ee374ddc6308b89bb74e0f7d /lib | |
parent | aa06d760b375c0cc9bbc693bf4bd412e9fda8f50 (diff) |
Better exception handling in index
Some better exception handling in Web entry point.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/common.php b/lib/common.php index 7d3ec108c..64c7f2410 100644 --- a/lib/common.php +++ b/lib/common.php @@ -182,6 +182,8 @@ foreach ($_config_files as $_config_file) { } } +// XXX: how many of these could be auto-loaded on use? + require_once('Validate.php'); require_once('markdown.php'); @@ -193,6 +195,9 @@ require_once(INSTALLDIR.'/lib/subs.php'); require_once(INSTALLDIR.'/lib/Shorturl_api.php'); require_once(INSTALLDIR.'/lib/twitter.php'); +require_once(INSTALLDIR.'/lib/clientexception.php'); +require_once(INSTALLDIR.'/lib/serverexception.php'); + // XXX: other formats here define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER); |