diff options
author | wei <> | 2006-01-04 08:10:56 +0000 |
---|---|---|
committer | wei <> | 2006-01-04 08:10:56 +0000 |
commit | 3628bfe141ef02299beb9514397cfc2c27a7dcb1 (patch) | |
tree | e1b09079bee418e45af6c49314a9f0fec5cf2012 /framework/Log/EventLog/exceptions/writer_exception.php | |
parent | 0ebae0856a5ed24bcc1b01d13d8715288f39a08d (diff) |
adding TEventLog using ezcLog from ezComponents.
Diffstat (limited to 'framework/Log/EventLog/exceptions/writer_exception.php')
-rw-r--r-- | framework/Log/EventLog/exceptions/writer_exception.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/framework/Log/EventLog/exceptions/writer_exception.php b/framework/Log/EventLog/exceptions/writer_exception.php new file mode 100644 index 00000000..ae82bf07 --- /dev/null +++ b/framework/Log/EventLog/exceptions/writer_exception.php @@ -0,0 +1,30 @@ +<?php +/** + * File containing the ezcLogWriterException class. + * + * @package EventLog + * @version //autogen// + * @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved. + * @license http://ez.no/licenses/new_bsd New BSD License + */ + +/** + * The ezcLogWriterException will be thrown when an {@class ezcLogWriter} or + * a subclass encounters an exceptional state. + * + * @package EventLog + * @version //autogen// + */ +class ezcLogWriterException extends Exception +{ + /** + * Constructs a new ezcLogWriterException with the message $message. + * + * @param string $message + */ + public function __construct( $message ) + { + parent::__construct( $message, 0 ); + } +} +?> |