Package com.ongres.scram.client
Class ChannelBindingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.ongres.scram.common.exception.ScramRuntimeException
com.ongres.scram.client.MechanismNegotiationException
com.ongres.scram.client.ChannelBindingException
- All Implemented Interfaces:
Serializable
Signals that an error occurred during the negotiation, validation, or
enforcement of SASL SCRAM Channel Binding.
This exception typically indicates a mismatch between the client's configured
ChannelBindingPolicy and the server's advertised mechanisms, or a failure
in processing cryptographic channel binding data (e.g., TLS server endpoint data).
- Since:
- 3.3
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionChannelBindingException(String detail) Constructs a newChannelBindingExceptionwith the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
ChannelBindingException
Constructs a newChannelBindingExceptionwith the specified detail message.- Parameters:
detail- the detail message explaining the cause of the negotiation failure.
-