Package io.netty.handler.ssl
Class NotSslRecordException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- javax.net.ssl.SSLException
-
- io.netty.handler.ssl.NotSslRecordException
-
- All Implemented Interfaces:
java.io.Serializable
public class NotSslRecordException extends javax.net.ssl.SSLException
SpecialSSLException
which will get thrown if a packet is received that not looks like a TLS/SSL record. A user can check for thisNotSslRecordException
and so detect if one peer tries to use secure and the other plain connection.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotSslRecordException()
NotSslRecordException(java.lang.String message)
NotSslRecordException(java.lang.String message, java.lang.Throwable cause)
NotSslRecordException(java.lang.Throwable cause)
-
-
-
Constructor Detail
-
NotSslRecordException
public NotSslRecordException()
-
NotSslRecordException
public NotSslRecordException(java.lang.String message)
-
NotSslRecordException
public NotSslRecordException(java.lang.Throwable cause)
-
NotSslRecordException
public NotSslRecordException(java.lang.String message, java.lang.Throwable cause)
-
-