All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgroups.util.QueueClosedException Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version

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