package keel.Algorithms.ImbalancedClassification.Resampling.SMOTE_RSB.Rough_Sets;
/**
* Exception that is raised when trying to use something that has no
* reference to a dataset, when one is required.
*
* @author Richard Kirkby (rkirkby@cs.waikato.ac.nz)
* @version $Revision: 1.1 $
*/
public class UnassignedDatasetException extends RuntimeException {
/**
* Creates a new UnassignedDatasetException with no message.
*
*/
public UnassignedDatasetException() {
super();
}
/**
* Creates a new UnassignedDatasetException.
*
* @param message the reason for raising an exception.
*/
public UnassignedDatasetException(String message) {
super(message);
}
}