com.motorola.iden.security
Class GeneralSecurityException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.motorola.iden.security.GeneralSecurityException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
BadPaddingException, IllegalBlockSizeException, InvalidAlgorithmParameterException, KeyException, NoSuchAlgorithmException, NoSuchPaddingException, SignatureException

public class GeneralSecurityException
extends java.lang.Exception

This is the general security exception class, which serves to group all the exception classes of the com.motorola.iden.security package that extend from it.

MOTOROLA and the Stylized M Logo are registered trademarks of Motorola, Inc. Reg. U.S. Pat. & Tm. Off.
© Copyright 2002 - 2004 Motorola, Inc. All Rights Reserved.

See Also:
Serialized Form

Constructor Summary
GeneralSecurityException()
          Constructs a GeneralSecurityException with no detail message.
GeneralSecurityException(java.lang.String msg)
          Constructs a GeneralSecurityException 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GeneralSecurityException

public GeneralSecurityException()
Constructs a GeneralSecurityException with no detail message.

GeneralSecurityException

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