- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.rabbitmq.jms.util.AbortedException
-
- All Implemented Interfaces:
java.io.Serializable
public class AbortedException extends java.lang.ExceptionInternal exception to indicate that waiting API call has been cancelled by other API action -- e.g.Connection.close().- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbortedException()Constructs a new exception with no message.AbortedException(java.lang.String message)Constructs a new exception with the specified detail message.AbortedException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with the specified detail message andThrowableas cause.AbortedException(java.lang.Throwable cause)Constructs a new exception with the specifiedThrowableas cause.
-
-
-
Constructor Detail
-
AbortedException
public AbortedException()
Constructs a new exception with no message.
-
AbortedException
public AbortedException(java.lang.String message)
Constructs a new exception with the specified detail message.- Parameters:
message- the detail message.
-
AbortedException
public AbortedException(java.lang.Throwable cause)
Constructs a new exception with the specifiedThrowableas cause.- Parameters:
cause- the cause of this exception.
-
AbortedException
public AbortedException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with the specified detail message andThrowableas cause.- Parameters:
message- the detail message.cause- the cause of this exception.
-
-