PHP Classes

File: exceptions.class.php

Recommend this page to a friend!
  Classes of Camilo Sperberg   Cache Manager   exceptions.class.php   Download  
File: exceptions.class.php
Role: Class source
Content type: text/plain
Description: Auxiliary needed class
Class: Cache Manager
Manage cache containers to store and retrieve data
Author: By
Last change: Update of exceptions.class.php
Date: 4 days ago
Size: 603 bytes
 

Contents

Class file image Download
<?php

namespace u4u;

/**
 * If there is a problem that disrupts normal operation, a cacheException will be thrown
 *
 * @package Cache manager
 * @since 2.0
 * @author Camilo Sperberg - http://unreal4u.com/
 * @license BSD License. Feel free to use and modify
 */
class cacheException extends \Exception {}

/**
 * If the minimum PHP version isn't run, a versionException will be thrown
 *
 * @package Cache manager
 * @since 2.0
 * @author Camilo Sperberg - http://unreal4u.com/
 * @license BSD License. Feel free to use and modify
 */
class versionException extends \Exception {}