PHP Classes

File: DATA/MySQL5/Error.php

Recommend this page to a friend!
  Classes of Martin Alterisio   DATA   DATA/MySQL5/Error.php   Download  
File: DATA/MySQL5/Error.php
Role: Class source
Content type: text/plain
Description: An exception thrown when an error is detected on an operation with a MySQL5 database.
Class: DATA
Access data stored in MySQL tables like arrays
Author: By
Last change: v0.8 - new exception hierarchy
Date: 16 years ago
Size: 332 bytes
 

Contents

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

/**
 * An exception thrown when an error is detected on an operation
 * with a MySQL5 database.
 */
class DATA_MySQL5_Error extends DATA_Exception {
    function
__construct() {
       
parent::__construct(DATA_MySQL5_Access::error(), DATA_MySQL5_Access::errorNo());
    }
}
?>