Files
secondo/Javagui/mmdb/error/streamprocessing/QueueClosedException.java

27 lines
636 B
Java
Raw Normal View History

2026-01-23 17:03:45 +08:00
package mmdb.error.streamprocessing;
import mmdb.error.MMDBException;
/**
* This exception indicates that a queue has been accessed while no element was
* present. It is meant for parallel procession of queries, which has not yet
* been implemented!
*
* @author Bjoern Clasen
*/
public class QueueClosedException extends MMDBException {
private static final long serialVersionUID = -1304348094655376129L;
/**
* Creates a new exception an propagates the message to the super class.
*
* @param message
* description of the error
*/
public QueueClosedException(String message) {
super(message);
}
}