PHP Classes

File: _exceptions/LoggerException.excpt.php

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

Contents

Class file image Download
<?php

/**
 * Logger 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 Logger
 */
final class LoggerException extends Exception
{
   
/**
     * Exception constructor.
     *
     * @param string $message The message of the exception
     * @return HashAlgorithmException
     */
   
public function LoggerException($message)
    {
       
// call the parent constructor
       
parent::__construct($message);
    }
}



?>