
timeBench.data.TemporalDataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timebench Show documentation
Show all versions of timebench Show documentation
TimeBench, a flexible, easy-to-use, and reusable software library written in Java that provides foundational data structures and algorithms for time- oriented data in Visual Analytics.
The newest version!
package timeBench.data;
/**
* This exception is thrown when temporal data classes are accessed in an illegal way.
*
*
* Added: 2011-07-15 / TL
* Modifications: 2012-02-14 / AR: add usual constructors
*
*
* @author Tim Lammarsch
*
*/
public class TemporalDataException extends Exception {
private static final long serialVersionUID = 0;
/**
* The default constructor.
* @param message The message of the exception.
*/
public TemporalDataException(String message) {
super(message);
}
public TemporalDataException(Throwable cause) {
super(cause);
}
public TemporalDataException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy