Login   Register  
PHP Classes
elePHPant
Icontem

File: DATA/IndexingStrategyException.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/IndexingStrategyException.php  
File: DATA/IndexingStrategyException.php
Role: Class source
Content type: text/plain
Description: All exceptions that occur on indexing strategies extend this exception.
Class: DATA
Access data stored in MySQL tables like arrays
 

Contents

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

/**
 * All exceptions that occur on indexing strategies extend this exception.
 */
abstract class DATA_IndexingStrategyException extends DATA_Exception {
    
/**
     * Default constructor.
     * 
     * @param string $message Message of exception.
     * @param int $code Code of exception.
     */
    
public function __construct($message null$code 0) {
        
parent::__construct($message$code);
    }
}
?>