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

26 lines
565 B
Java

package mmdb.error.streamprocessing;
import mmdb.error.MMDBException;
/**
* This exception indicates an error while letting the core transform a query to
* nested list format.
*
* @author Bjoern Clasen
*/
public class TransformQueryException extends MMDBException{
private static final long serialVersionUID = -237668786538776993L;
/**
* Creates a new exception an propagates the message to the super class.
*
* @param message
* description of the error
*/
public TransformQueryException(String message) {
super(message);
}
}