Module java.base
Package javax.net.ssl

Class SSLHandshakeException

All Implemented Interfaces:
Serializable

public class SSLHandshakeException extends SSLException
Indicates that the client and server could not negotiate the desired level of security. The connection is no longer usable.
Since:
1.4
See Also:
  • Constructor Details

    • SSLHandshakeException

      public SSLHandshakeException(String reason)
      Constructs an exception reporting an error found by an SSL subsystem during handshaking.
      Parameters:
      reason - describes the problem.
    • SSLHandshakeException

      public SSLHandshakeException(String message, Throwable cause)
      Creates a SSLHandshakeException with the specified detail message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      Since:
      19