<?php
/**
* @package DATA
*/
/**
* An exception thrown when a feature hasn't been
* implemented yet.
*/
class DATA_NotImplemented extends DATA_Exception {
/**
* Default constructor.
* @param string $feature A string representation of the feature
* which still hasn't been implemented.
*/
function __construct($feature) {
parent::__construct("$feature is not yet implemented.");
}
}
?>
|