Files
secondo/Javagui/mmdb/error/inout/ExportException.java
2026-01-23 17:03:45 +08:00

25 lines
510 B
Java

package mmdb.error.inout;
import mmdb.error.MMDBException;
/**
* This exception indicates an error during export of a any MemoryObject.
*
* @author Bjoern Clasen
*/
public class ExportException extends MMDBException {
private static final long serialVersionUID = -2495107194021992145L;
/**
* Creates a new exception an propagates the message to the super class.
*
* @param message
* description of the error
*/
public ExportException(String message) {
super(message);
}
}