java.security
Class NoSuchAlgorithmException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.security.GeneralSecurityException
|
+--java.security.NoSuchAlgorithmException
- All Implemented Interfaces:
- Serializable
- public class NoSuchAlgorithmException
- extends GeneralSecurityException
Untamed: This exception is thrown when a particular cryptographic algorithm is
requested but is not available in the environment.
- Version:
- 1.21, 01/12/03
- Author:
- Benjamin Renaud
- See Also:
- Serialized Form
Field Summary
Fields inherited from class java.lang.Exception
Fields inherited from class java.lang.Throwable
Constructor Summary
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
Methods inherited from class java.lang.Object
Constructor Detail
NoSuchAlgorithmException
public NoSuchAlgorithmException()
- Enabled:
Constructs a NoSuchAlgorithmException with no detail
message. A detail message is a String that describes this
particular exception.
NoSuchAlgorithmException
public NoSuchAlgorithmException(String msg)
- Enabled: Constructs a NoSuchAlgorithmException with the specified
detail message. A detail message is a String that describes
this particular exception, which may, for example, specify which
algorithm is not available.
- Parameters:
msg - the detail message.