<?php
 
/**
 
 * @package DATA
 
 */
 
 
/**
 
 * An exception thrown when access to the database through
 
 * an object is read only.
 
 */
 
class DATA_ReadOnly extends DATA_Exception {
 
    /**
 
     * Default constructor.
 
     */
 
    function __construct() {
 
        parent::__construct("This access is read only.");
 
    }
 
}
 
?>
 
 
 |