PHP Classes

File: DATA/IndexingStrategyException.php

Recommend this page to a friend!
  Classes of Martin Alterisio   DATA   DATA/IndexingStrategyException.php   Download  
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
Author: By
Last change: Fixed doc-comment
Date: 16 years ago
Size: 472 bytes
 

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