blob: ae82bf07b6bdda402721bab5bb8e5ab8b37596ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 );
}
}
?>
|