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 SummaryConstructorsConstructorDescriptionClientConnectionSecurityException(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 SummaryMethods inherited from class org.apache.qpid.protonj2.client.exceptions.ClientConnectionRemotelyClosedExceptiongetErrorConditionMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ClientConnectionSecurityExceptionCreates a new connection security exception.- Parameters:
- message- The message that describes the reason for the security error.
 
- 
ClientConnectionSecurityExceptionCreates 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.
 
- 
ClientConnectionSecurityExceptionCreates a new connection security exception.- Parameters:
- message- The message that describes the reason for the error.
- errorCondition- An- ErrorConditionthat provides additional information about the error.
 
- 
ClientConnectionSecurityExceptionpublic 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- An- ErrorConditionthat provides additional information about the error.
 
 
-