PHP Classes

File: src/Generics/UserWarningException.php

Recommend this page to a friend!
  Classes of Maik Greubel   PHP Generics   src/Generics/UserWarningException.php   Download  
File: src/Generics/UserWarningException.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/UserWarningException.php
Date: 2 months ago
Size: 319 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 user warning has occured
 *
 * @author Maik Greubel <greubel@nkey.de>
 */
class UserWarningException extends ErrorException
{
}