<?php /** * This file is part of the PHP Generics package. * * @package Generics */ namespace Generics; use ErrorException; /** * Derived exception * * Will be thrown whenever a php warning has occured * * @author Maik Greubel <greubel@nkey.de> */ class WarningException extends ErrorException { }
info at phpclasses dot org