blob: ecea1c08f623441196d60475095d29ca9983da40 [file] [log] [blame]
<?php
/**
* File containing the ezcTemplateException class
*
* @package Template
* @version //autogen//
* @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
/**
* ezcTemplateExceptions are thrown when an exceptional state
* occurs in the Template package.
*
* @package Template
* @version //autogen//
*/
class ezcTemplateException extends ezcBaseException
{
/**
* Constructs a new ezcTemplateException with error message $message.
*
* @param string $message
*/
public function __construct( $message )
{
parent::__construct( $message );
}
}
?>