PHP Classes

File: src/Generics/NoAccessException.php

Recommend this page to a friend!
  Classes of Maik Greubel   PHP Generics   src/Generics/NoAccessException.php   Download  
File: src/Generics/NoAccessException.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/NoAccessException.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;

/**
 * Derived exception
 *
 * Will be thrown whenever the access to a resource is prohibited.
 *
 * @author Maik Greubel <greubel@nkey.de>
 */
class NoAccessException extends GenericsException
{
}