org.jgroups.util.QueueClosedException Maven / Gradle / Ivy
package 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