![JAR search and dependency download from the Maven repository](/logo.png)
bboss.org.jgroups.util.QueueClosedException Maven / Gradle / Ivy
The newest version!
// $Id: QueueClosedException.java,v 1.3 2006/11/13 17:42:11 bstansberry Exp $
package bboss.org.jgroups.util;
public class QueueClosedException extends Exception {
private static final long serialVersionUID = -7575787375592873964L;
public QueueClosedException() {
}
public QueueClosedException( String msg )
{
super( msg );
}
public String toString() {
if ( this.getMessage() != null )
return "QueueClosedException: " + this.getMessage();
else
return "QueueClosedException";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy