java.security
Class KeyException

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable 
      extended by java.lang.Exception sample code for java.lang.Exception definition code for java.lang.Exception 
          extended by java.security.GeneralSecurityException sample code for java.security.GeneralSecurityException definition code for java.security.GeneralSecurityException 
              extended by java.security.KeyException
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable
Direct Known Subclasses:
InvalidKeyException sample code for java.security.InvalidKeyException definition code for java.security.InvalidKeyException , KeyManagementException sample code for java.security.KeyManagementException definition code for java.security.KeyManagementException

public class KeyException
extends GeneralSecurityException sample code for java.security.GeneralSecurityException definition code for java.security.GeneralSecurityException

This is the basic key exception.

See Also:
Key sample code for java.security.Key definition code for java.security.Key , InvalidKeyException sample code for java.security.InvalidKeyException definition code for java.security.InvalidKeyException , KeyManagementException sample code for java.security.KeyManagementException definition code for java.security.KeyManagementException , Serialized Form

Constructor Summary
KeyException sample code for java.security.KeyException.KeyException() definition code for java.security.KeyException.KeyException() ()
          Constructs a KeyException with no detail message.
KeyException sample code for java.security.KeyException.KeyException(java.lang.String) definition code for java.security.KeyException.KeyException(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  msg)
          Constructs a KeyException with the specified detail message.
KeyException sample code for java.security.KeyException.KeyException(java.lang.String, java.lang.Throwable) definition code for java.security.KeyException.KeyException(java.lang.String, java.lang.Throwable) (String sample code for java.lang.String definition code for java.lang.String  message, Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable  cause)
          Creates a KeyException with the specified detail message and cause.
KeyException sample code for java.security.KeyException.KeyException(java.lang.Throwable) definition code for java.security.KeyException.KeyException(java.lang.Throwable) (Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable  cause)
          Creates a KeyException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
 
Method Summary
 
Methods inherited from class java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
fillInStackTrace sample code for java.lang.Throwable.fillInStackTrace() definition code for java.lang.Throwable.fillInStackTrace() , getCause sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() , getLocalizedMessage sample code for java.lang.Throwable.getLocalizedMessage() definition code for java.lang.Throwable.getLocalizedMessage() , getMessage sample code for java.lang.Throwable.getMessage() definition code for java.lang.Throwable.getMessage() , getStackTrace sample code for java.lang.Throwable.getStackTrace() definition code for java.lang.Throwable.getStackTrace() , initCause sample code for java.lang.Throwable.initCause(java.lang.Throwable) definition code for java.lang.Throwable.initCause(java.lang.Throwable) , printStackTrace sample code for java.lang.Throwable.printStackTrace() definition code for java.lang.Throwable.printStackTrace() , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintStream) definition code for java.lang.Throwable.printStackTrace(java.io.PrintStream) , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) definition code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) , setStackTrace sample code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) definition code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) , toString sample code for java.lang.Throwable.toString() definition code for java.lang.Throwable.toString()
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

KeyException sample code for java.security.KeyException() definition code for java.security.KeyException()

public KeyException()
Constructs a KeyException with no detail message. A detail message is a String that describes this particular exception.


KeyException sample code for java.security.KeyException(java.lang.String) definition code for java.security.KeyException(java.lang.String)

public KeyException(String sample code for java.lang.String definition code for java.lang.String  msg)
Constructs a KeyException with the specified detail message. A detail message is a String that describes this particular exception.

Parameters:
msg - the detail message.

KeyException sample code for java.security.KeyException(java.lang.String, java.lang.Throwable) definition code for java.security.KeyException(java.lang.String, java.lang.Throwable)

public KeyException(String sample code for java.lang.String definition code for java.lang.String  message,
                    Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable  cause)
Creates a KeyException with the specified detail message and cause.

Parameters:
message - the detail message (which is saved for later retrieval by the Throwable.getMessage() sample code for java.lang.Throwable.getMessage() definition code for java.lang.Throwable.getMessage() method).
cause - the cause (which is saved for later retrieval by the Throwable.getCause() sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
Since:
1.5

KeyException sample code for java.security.KeyException(java.lang.Throwable) definition code for java.security.KeyException(java.lang.Throwable)

public KeyException(Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable  cause)
Creates a KeyException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

Parameters:
cause - the cause (which is saved for later retrieval by the Throwable.getCause() sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
Since:
1.5