<?php /** * Exporter exception definition. * * @author Marius Zadara <marius@zadara.org> * @category org.zadara.marius.logger.exceptions * @copyright (C) 2008 Marius Zadara <marius@zadara.org> * @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); } } ?>