Class ClientConnectionSecurityException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.qpid.protonj2.client.exceptions.ClientException
org.apache.qpid.protonj2.client.exceptions.ClientIOException
org.apache.qpid.protonj2.client.exceptions.ClientConnectionRemotelyClosedException
org.apache.qpid.protonj2.client.exceptions.ClientConnectionSecurityException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ClientConnectionSecuritySaslException
Connection level Security Exception used to indicate a security violation has occurred.
- See Also:
-
Constructor Summary
ConstructorDescriptionClientConnectionSecurityException
(String message) Creates a new connection security exception.ClientConnectionSecurityException
(String message, Throwable cause) Creates a new connection security exception.ClientConnectionSecurityException
(String message, Throwable cause, ErrorCondition errorCondition) Creates a new connection security exception.ClientConnectionSecurityException
(String message, ErrorCondition errorCondition) Creates a new connection security exception. -
Method Summary
Methods inherited from class org.apache.qpid.protonj2.client.exceptions.ClientConnectionRemotelyClosedException
getErrorCondition
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ClientConnectionSecurityException
Creates a new connection security exception.- Parameters:
message
- The message that describes the reason for the security error.
-
ClientConnectionSecurityException
Creates a new connection security exception.- Parameters:
message
- The message that describes the reason for the security error.cause
- An exception that further defines the reason for the security error.
-
ClientConnectionSecurityException
Creates a new connection security exception.- Parameters:
message
- The message that describes the reason for the error.errorCondition
- AnErrorCondition
that provides additional information about the error.
-
ClientConnectionSecurityException
public ClientConnectionSecurityException(String message, Throwable cause, ErrorCondition errorCondition) Creates a new connection security exception.- Parameters:
message
- The message that describes the reason for the error.cause
- An exception that further defines the reason for the security error.errorCondition
- AnErrorCondition
that provides additional information about the error.
-