PHP Classes

File: src/Generics/Streams/StreamException.php

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

Contents

Class file image Download
<?php

/**
 * This file is part of the PHP Generics package.
 *
 * @package Generics
 */
namespace Generics\Streams;

use
Generics\GenericsException;

/**
 * Derived exception
 *
 * Will be thrown whenever the stream is used wrong (e.g. read/write after close, etc.)
 *
 * @author Maik Greubel <greubel@nkey.de>
 */
class StreamException extends GenericsException
{
}