Most visited

Recently visited

Added in API level 1

SSLKeyException

public class SSLKeyException
extends SSLException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ javax.net.ssl.SSLException
           ↳ javax.net.ssl.SSLKeyException


Reports a bad SSL key. Normally, this indicates misconfiguration of the server or client SSL certificate and private key.

Summary

Public constructors

SSLKeyException(String reason)

Constructs an exception reporting a key management error found by an SSL subsystem.

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

SSLKeyException

Added in API level 1
SSLKeyException (String reason)

Constructs an exception reporting a key management error found by an SSL subsystem.

Parameters
reason String: describes the problem.

Hooray!