com.novell.java.security
Class InvalidKeyException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.novell.java.security.GeneralSecurityException
                    |
                    +--com.novell.java.security.KeyException
                          |
                          +--com.novell.java.security.InvalidKeyException

public class InvalidKeyException
extends KeyException

Provides the exception for invalid Keys. This includes invalid encoding, wrong length, uninitialized, and so forth.


Constructor Summary
InvalidKeyException()
          Constructs an InvalidKeyException with no detail message.
InvalidKeyException(java.lang.String msg)
          Constructs an InvalidKeyException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidKeyException

public InvalidKeyException()
Constructs an InvalidKeyException with no detail message.

InvalidKeyException

public InvalidKeyException(java.lang.String msg)
Constructs an InvalidKeyException with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
msg - The detail message string.