<?php
 
 
/**
 
 * Exporter exception definition.
 
 * 
 
 * @author Marius Zadara <[email protected]>
 
 * @category org.zadara.marius.logger.exceptions
 
 * @copyright (C) 2008 Marius Zadara <[email protected]>
 
 * @license GNU GPL
 
 * @package org.zadara.marius.logger
 
 * @final
 
 * @see EventExporter 
 
 */
 
final class ExporterException extends Exception 
 
{
 
    /**
 
     * Exception constructor.
 
     *
 
     * @param string $message The message of the exception
 
     * @return HashAlgorithmException
 
     */
 
    public function ExporterException($message)
 
    {
 
        // call the parent constructor
 
        parent::__construct($message);
 
    }
 
}
 
 
 
?>
 
 |