public class AlgorithmMethodException
extends java.lang.Exception
Algorithm
.Constructor and Description |
---|
AlgorithmMethodException()
Creates a new instance of
AlgorithmMethodException without detail message. |
AlgorithmMethodException(java.lang.String msg)
Constructs an instance of
AlgorithmMethodException with the specified detail message. |
AlgorithmMethodException(java.lang.String msg,
java.lang.Throwable cause)
Constructs an instance of
AlgorithmMethodException with
the specified detail message and cause. |
AlgorithmMethodException(java.lang.Throwable cause)
Constructs an instance of
AlgorithmMethodException with the specified cause. |
public AlgorithmMethodException()
AlgorithmMethodException
without detail message.public AlgorithmMethodException(java.lang.String msg)
AlgorithmMethodException
with the specified detail message.msg
- the detail message.public AlgorithmMethodException(java.lang.Throwable cause)
AlgorithmMethodException
with the specified cause.cause
- the cause (which is saved for later retrieval by the
Throwable.getCause()
method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)public AlgorithmMethodException(java.lang.String msg, java.lang.Throwable cause)
AlgorithmMethodException
with
the specified detail message and cause.msg
- the detail message.cause
- the cause (which is saved for later retrieval by the
Throwable.getCause()
method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)