Android 2.3 Gingerbread

java.security
Class KeyStoreException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.security.GeneralSecurityException
              extended by java.security.KeyStoreException
All Implemented Interfaces:
Serializable

public class KeyStoreException
extends GeneralSecurityException

KeyStoreException is a general KeyStore exception.

See Also:
KeyStore, Serialized Form

Constructor Summary
KeyStoreException()
          Constructs a new instance of KeyStoreException.
KeyStoreException(String msg)
          Constructs a new instance of KeyStoreException with the given message.
KeyStoreException(String message, Throwable cause)
          Constructs a new instance of KeyStoreException with the given message and the cause.
KeyStoreException(Throwable cause)
          Constructs a new instance of KeyStoreException with the cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

KeyStoreException

public KeyStoreException(String msg)
Constructs a new instance of KeyStoreException with the given message.

Parameters:
msg - the detail message for this exception.

KeyStoreException

public KeyStoreException()
Constructs a new instance of KeyStoreException.


KeyStoreException

public KeyStoreException(String message,
                         Throwable cause)
Constructs a new instance of KeyStoreException with the given message and the cause.

Parameters:
message - the detail message for this exception.
cause - the exception which is the cause for this exception.

KeyStoreException

public KeyStoreException(Throwable cause)
Constructs a new instance of KeyStoreException with the cause.

Parameters:
cause - the exception which is the cause for this exception.

Android 2.3 Gingerbread