Class SSLRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.github.fmjsjx.libnetty.handler.ssl.SSLRuntimeException
-
- All Implemented Interfaces:
java.io.Serializable
public class SSLRuntimeException extends java.lang.RuntimeExceptionA runtime exception for SSL.- Since:
- 1.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SSLRuntimeException(java.lang.String message, javax.net.ssl.SSLException cause)Constructs a new SSL runtime exception with the specified detail message and cause (asSSLException).SSLRuntimeException(javax.net.ssl.SSLException cause)Constructs a new SSL runtime exception with the specified cause (asSSLException).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.net.ssl.SSLExceptiongetCause()
-
-
-
Constructor Detail
-
SSLRuntimeException
public SSLRuntimeException(java.lang.String message, javax.net.ssl.SSLException cause)Constructs a new SSL runtime exception with the specified detail message and cause (asSSLException).- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause asSSLException
-
SSLRuntimeException
public SSLRuntimeException(javax.net.ssl.SSLException cause)
Constructs a new SSL runtime exception with the specified cause (asSSLException).- Parameters:
cause- the cause asSSLException
-
-