diff options
author | xue <> | 2006-01-27 23:56:46 +0000 |
---|---|---|
committer | xue <> | 2006-01-27 23:56:46 +0000 |
commit | df31a176f904b5b4c2f9505fe2fe352176728f9e (patch) | |
tree | aeccfa86b6b1193888e49b310952c1f5757a9d6c /framework/Exceptions | |
parent | 80a84e2c2cdedef934585d9ecd020dcec8c5f024 (diff) |
Added error handling tutorial page.
Diffstat (limited to 'framework/Exceptions')
-rw-r--r-- | framework/Exceptions/TException.php | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/framework/Exceptions/TException.php b/framework/Exceptions/TException.php index fb668458..1ad86f12 100644 --- a/framework/Exceptions/TException.php +++ b/framework/Exceptions/TException.php @@ -15,16 +15,19 @@ *
* TException is the base class for all PRADO exceptions.
* TException
+ * TApplicationException
* TSystemException
* TInvalidDataValueException
* TInvalidDataTypeException
+ * TInvalidDataFormatException
* TInvalidOperationException
* TConfigurationException
+ * TPhpErrorException
+ * TSecurityException
* TIOException
* TDBException
* THttpException
* TNotSupportedException
- * TApplicationException
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Revision: $ $Date: $
@@ -119,15 +122,7 @@ class TNotSupportedException extends TSystemException {
}
-class TTemplateParsingException extends TSystemException
-{
-}
-
-class TTemplateRuntimeException extends TSystemException
-{
-}
-
-class TPhpErrorException extends TException
+class TPhpErrorException extends TSystemException
{
public function __construct($errno,$errstr,$errfile,$errline)
{
@@ -151,7 +146,7 @@ class TPhpErrorException extends TException }
-class THttpException extends TException
+class THttpException extends TSystemException
{
private $_statusCode;
|