java.security
Class NoSuchAlgorithmException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.security.GeneralSecurityException
              extended by java.security.NoSuchAlgorithmException
All Implemented Interfaces:
Serializable

public class NoSuchAlgorithmException
extends GeneralSecurityException

This exception is thrown when the requested security algorithm is not available

See Also:
Serialized Form

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

NoSuchAlgorithmException

public NoSuchAlgorithmException()
Create a new instance with no descriptive error message.


NoSuchAlgorithmException

public NoSuchAlgorithmException(String msg)
Create a new instance with a descriptive error message.

Parameters:
msg - the descriptive error message

NoSuchAlgorithmException

public NoSuchAlgorithmException(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

NoSuchAlgorithmException

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

Parameters:
cause - the cause
Since:
1.5