Package org.apache.activemq.broker
Class SuppressReplyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.activemq.broker.SuppressReplyException
-
- All Implemented Interfaces:
Serializable
public class SuppressReplyException extends RuntimeException
An exception thrown when the broker or transport will be shutdown in response to an error, eg. from IOExceptionHandler. The transport will die (socket.close()) so we don't want to propagate exceptions to the client; failover transport will retry the operation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SuppressReplyException(String reason)
SuppressReplyException(String reason, IOException cause)
SuppressReplyException(Throwable cause)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SuppressReplyException
public SuppressReplyException(Throwable cause)
-
SuppressReplyException
public SuppressReplyException(String reason)
-
SuppressReplyException
public SuppressReplyException(String reason, IOException cause)
-
-