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

org.fusesource.stomp.client.ProtocolException Maven / Gradle / Ivy

There is a newer version: 1.19
Show newest version
/**
 * Copyright (C) 2010-2011, FuseSource Corp.  All rights reserved.
 *
 *     http://fusesource.com
 *
 * The software in this package is published under the terms of the
 * CDDL license a copy of which has been included with this distribution
 * in the license.txt file.
 */

package org.fusesource.stomp.client;

import java.io.IOException;

/**
 * 

*

* * @author Hiram Chirino */ public class ProtocolException extends IOException { private static final long serialVersionUID = -2869735532997332242L; private final boolean fatal; public ProtocolException() { this(null); } public ProtocolException(String s) { this(s, false); } public ProtocolException(String s, boolean fatal) { this(s, fatal, null); } public ProtocolException(String s, boolean fatal, Throwable cause) { super(s); this.fatal = fatal; initCause(cause); } public boolean isFatal() { return fatal; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy