PHP Classes

File: _exceptions/ExporterException.excpt.php

Recommend this page to a friend!
  Classes of Marius Zadara   Logger   _exceptions/ExporterException.excpt.php   Download  
File: _exceptions/ExporterException.excpt.php
Role: Class source
Content type: text/plain
Description: Custom exporter exception
Class: Logger
Filter and export data of application events
Author: By
Last change:
Date: 15 years ago
Size: 629 bytes
 

Contents

Class file image Download
<?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);
    }
}


?>