com.ziclix.python.sql.util.QueueClosedException Maven / Gradle / Ivy
Go to download
Jython is an implementation of the high-level, dynamic, object-oriented
language Python written in 100% Pure Java, and seamlessly integrated with
the Java platform. It thus allows you to run Python on any Java platform.
/*
* Jython Database Specification API 2.0
*
* $Id: QueueClosedException.java 2414 2005-02-23 04:26:23Z bzimmer $
*
* Copyright (c) 2001 brian zimmer
*
*/
package com.ziclix.python.sql.util;
/**
* This exception is thrown when the queue is closed and an operation is attempted.
*
* @author brian zimmer
* @version $Revision: 2414 $
*/
public class QueueClosedException extends RuntimeException {
/**
* Constructor QueueClosedException
*/
public QueueClosedException() {
super();
}
/**
* Constructor QueueClosedException
*
* @param msg
*/
public QueueClosedException(String msg) {
super(msg);
}
}