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:
java.io.Serializable
- Direct Known Subclasses:
ClientConnectionSecuritySaslException
public class ClientConnectionSecurityException extends ClientConnectionRemotelyClosedException
Connection level Security Exception used to indicate a security violation has occurred.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClientConnectionSecurityException(java.lang.String message)
Creates a new connection security exception.ClientConnectionSecurityException(java.lang.String message, java.lang.Throwable cause)
Creates a new connection security exception.ClientConnectionSecurityException(java.lang.String message, java.lang.Throwable cause, ErrorCondition errorCondition)
Creates a new connection security exception.ClientConnectionSecurityException(java.lang.String message, ErrorCondition errorCondition)
Creates a new connection security exception.
-
Method Summary
-
Methods inherited from class org.apache.qpid.protonj2.client.exceptions.ClientConnectionRemotelyClosedException
getErrorCondition
-
-
-
-
Constructor Detail
-
ClientConnectionSecurityException
public ClientConnectionSecurityException(java.lang.String message)
Creates a new connection security exception.- Parameters:
message
- The message that describes the reason for the security error.
-
ClientConnectionSecurityException
public ClientConnectionSecurityException(java.lang.String message, java.lang.Throwable cause)
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
public ClientConnectionSecurityException(java.lang.String message, ErrorCondition errorCondition)
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(java.lang.String message, java.lang.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.
-
-