PHP Classes

File: DATA/Exception.php

Recommend this page to a friend!
  Classes of Martin Alterisio   DATA   DATA/Exception.php   Download  
File: DATA/Exception.php
Role: Class source
Content type: text/plain
Description: All exceptions inside the DATA library extend this exception.
Class: DATA
Access data stored in MySQL tables like arrays
Author: By
Last change: + anonymous access
Date: 16 years ago
Size: 281 bytes
 

Contents

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

/**
 * All exceptions inside the DATA library extend this exception.
 */
abstract class DATA_Exception extends Exception {
    function
__construct($message = null, $code = 0) {
       
parent::__construct($message, $code);
    }
}
?>