com.novell.java.security
Class NoSuchAlgorithmException

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

public class NoSuchAlgorithmException
extends GeneralSecurityException

Thrown when a particular cryptographic algorithm is requested but is not available in the environment.


Constructor Summary
NoSuchAlgorithmException()
          Constructs a NoSuchAlgorithmException with no detail message.
NoSuchAlgorithmException(java.lang.String msg)
          Constructs a NoSuchAlgorithmException 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

NoSuchAlgorithmException

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

NoSuchAlgorithmException

public NoSuchAlgorithmException(java.lang.String msg)
Constructs a NoSuchAlgorithmException with the specified detail message. A detail message is a String that describes this particular exception, which may, for example, specify the algorithm that is not available.
Parameters:
msg - The detail message string.