Class ClientConnectionSecuritySaslException
- 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
-
- org.apache.qpid.protonj2.client.exceptions.ClientConnectionSecuritySaslException
-
- All Implemented Interfaces:
Serializable
public class ClientConnectionSecuritySaslException extends ClientConnectionSecurityException
Security Exception used to indicate a security violation has occurred.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClientConnectionSecuritySaslException(String message)
Create a new instance of the connection SASL security exceptionClientConnectionSecuritySaslException(String message, boolean temporary)
Create a new instance of the connection SASL security exceptionClientConnectionSecuritySaslException(String message, boolean temporary, Throwable cause)
Create a new instance of the connection SASL security exceptionClientConnectionSecuritySaslException(String message, Throwable cause)
Create a new instance of the connection SASL security exception
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isSysTempFailure()
-
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 Detail
-
ClientConnectionSecuritySaslException
public ClientConnectionSecuritySaslException(String message)
Create a new instance of the connection SASL security exception- Parameters:
message
- The message that describes the error.
-
ClientConnectionSecuritySaslException
public ClientConnectionSecuritySaslException(String message, Throwable cause)
Create a new instance of the connection SASL security exception- Parameters:
message
- The message that describes the error.cause
- The exception that initiated this error.
-
ClientConnectionSecuritySaslException
public ClientConnectionSecuritySaslException(String message, boolean temporary)
Create a new instance of the connection SASL security exception- Parameters:
message
- The message that describes the error.temporary
- Boolean that indicates if the error is a temporary (true) or permanent error (false).
-
ClientConnectionSecuritySaslException
public ClientConnectionSecuritySaslException(String message, boolean temporary, Throwable cause)
Create a new instance of the connection SASL security exception- Parameters:
message
- The message that describes the error.temporary
- Boolean that indicates if the error is a temporary (true) or permanent error (false).cause
- The exception that initiated this error.
-
-