Package io.servicetalk.transport.api
Class CertificateCompressionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
javax.net.ssl.SSLException
io.servicetalk.transport.api.CertificateCompressionException
- All Implemented Interfaces:
Serializable
When thrown contains information about a failure during TLS certificate compression.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCertificateCompressionException
(String message) Create a newCertificateCompressionException
with just a message.CertificateCompressionException
(String message, Throwable cause) Create a newCertificateCompressionException
with message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CertificateCompressionException
Create a newCertificateCompressionException
with just a message.- Parameters:
message
- the message for the exception.
-
CertificateCompressionException
Create a newCertificateCompressionException
with message and cause.- Parameters:
message
- the message for the exception.cause
- the cause of this exception.
-