PHP Classes

File: src/Generics/NoticeException.php

Recommend this page to a friend!
  Classes of Maik Greubel   PHP Generics   src/Generics/NoticeException.php   Download  
File: src/Generics/NoticeException.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Generics
Framework for accessing streams, sockets and logs
Author: By
Last change: Update of src/Generics/NoticeException.php
Date: 2 months ago
Size: 308 bytes
 

Contents

Class file image Download
<?php
/**
 * This file is part of the PHP Generics package.
 *
 * @package Generics
 */
namespace Generics;

use
ErrorException;

/**
 * Derived exception
 *
 * Will be thrown whenever a php notice has occured
 *
 * @author Maik Greubel <greubel@nkey.de>
 */
class NoticeException extends ErrorException
{
}