
prefuse.data.io.DataIOException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prefuse-vienna Show documentation
Show all versions of prefuse-vienna Show documentation
Prefuse is a set of software tools for creating rich interactive data visualizations in the Java programming language.
The newest version!
package prefuse.data.io;
/**
* Exception indicating an error occurred during reading or writing data.
*
* @author jeffrey heer
*/
public class DataIOException extends Exception {
/**
* Create a new DataIOException.
*/
public DataIOException() {
super();
}
/**
* Create a new DataIOException.
* @param message a descriptive error message
*/
public DataIOException(String message) {
super(message);
}
/**
* Create a new DataIOException.
* @param message a descriptive error message
* @param cause a Throwable (e.g., error or exception) that was the cause
* for this exception being thrown
*/
public DataIOException(String message, Throwable cause) {
super(message, cause);
}
/**
* Create a new DataIOException.
* @param cause a Throwable (e.g., error or exception) that was the cause
* for this exception being thrown
*/
public DataIOException(Throwable cause) {
super(cause);
}
} // end of class DataIOException
© 2015 - 2025 Weber Informatics LLC | Privacy Policy