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

Indicates a problem with the key store.

Since:
1.2
See Also:
Serialized Form

Constructor Summary
KeyStoreException()
          Create a new instance detailed error message.
KeyStoreException(String msg)
          Create a new instance with a detailed error message.
KeyStoreException(String s, Throwable cause)
          Create a new instance with a descriptive error message and a cause.
KeyStoreException(Throwable cause)
          Create a new instance with a 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()
Create a new instance detailed error message.


KeyStoreException

public KeyStoreException(String msg)
Create a new instance with a detailed error message.

Parameters:
msg - the descriptive error message

KeyStoreException

public KeyStoreException(String s,
                         Throwable cause)
Create a new instance with a descriptive error message and a cause.

Parameters:
s - the descriptive error message
cause - the cause
Since:
1.5

KeyStoreException

public KeyStoreException(Throwable cause)
Create a new instance with a cause.

Parameters:
cause - the cause
Since:
1.5