FileDocCategorySizeDatePackage
SSLException.javaAPI DocAndroid 1.5 API2015Wed May 06 22:41:06 BST 2009javax.net.ssl

SSLException

public class SSLException extends IOException
The base class for all SSL related exceptions.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public SSLException(String reason)
Creates a new {@code SSLException} with the specified reason.

param
reason the reason for the exception.
since
Android 1.0


                                        
       
        super(reason);
    
public SSLException(String message, Throwable cause)
Creates a new {@code SSLException} with the specified message and cause.

param
message the detail message for the exception.
param
cause the cause.
since
Android 1.0

        super(message);
        super.initCause(cause);
    
public SSLException(Throwable cause)
Creates a new {@code SSLException} with the specified cause.

param
cause the cause
since
Android 1.0

        super(cause == null ? null : cause.toString());
        super.initCause(cause);
    
Methods Summary