PHP Classes

File: DATA/CannotRemoveField.php

Recommend this page to a friend!
  Classes of Martin Alterisio   DATA   DATA/CannotRemoveField.php   Download  
File: DATA/CannotRemoveField.php
Role: Class source
Content type: text/plain
Description: An exception thrown when an unset has been tried on a row field.
Class: DATA
Access data stored in MySQL tables like arrays
Author: By
Last change: v0.8 - new Exception hierarchy
Date: 16 years ago
Size: 326 bytes
 

Contents

Class file image Download
<?php
/**
 * @package DATA
 */

/**
 * An exception thrown when an unset has been tried on
 * a row field.
 */
class DATA_CannotRemoveField extends DATA_Exception {
   
/**
     * Default constructor.
     */
   
function __construct() {
       
parent::__construct("Row field cannot be unset.");
    }
}
?>