package keel.Algorithms.ImbalancedClassification.Resampling.SMOTE_RSB.Rough_Sets;
/**
* Exception that is raised when trying to use some data that has no
* class assigned to it, but a class is needed to perform the operation.
*
* @author Richard Kirkby (rkirkby@cs.waikato.ac.nz)
* @version $Revision: 1.1 $
*/
public class UnassignedClassException extends RuntimeException {
/**
* Creates a new UnassignedClassException with no message.
*
*/
public UnassignedClassException() {
super();
}
/**
* Creates a new UnassignedClassException.
*
* @param message the reason for raising an exception.
*/
public UnassignedClassException(String message) {
super(message);
}
}