messif.algorithms
Class AlgorithmMethodException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by messif.algorithms.AlgorithmMethodException
All Implemented Interfaces:
java.io.Serializable

public class AlgorithmMethodException
extends java.lang.Exception

Exception that indicates a problem when executing a method on Algorithm.

See Also:
Serialized Form

Constructor Summary
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.Throwable cause)
          Constructs an instance of AlgorithmMethodException with the specified detail message.
 
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

AlgorithmMethodException

public AlgorithmMethodException()
Creates a new instance of AlgorithmMethodException without detail message.


AlgorithmMethodException

public AlgorithmMethodException(java.lang.String msg)
Constructs an instance of AlgorithmMethodException with the specified detail message.

Parameters:
msg - the detail message.

AlgorithmMethodException

public AlgorithmMethodException(java.lang.Throwable cause)
Constructs an instance of AlgorithmMethodException with the specified detail message.

Parameters:
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.)