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