Login   Register  
PHP Classes
elePHPant
Icontem

File: DATA/Exception.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Martin Alterisio  >  DATA  >  DATA/Exception.php  
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
 

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);
    }
}
?>