Class FrameworkException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AlgorithmException, ConfigurationException, DataStoreException, GrammarException, InvalidParameterException, InvalidPropertyException, NoSuchParameterException, NoValidNodeException, ProblemException, ProviderException, UnsatisfiedArgumentException, VariableEncodingException

public class FrameworkException extends RuntimeException
The framework exception is the parent type of all exceptions specific to the MOEA Framework. Whenever possible, prefer using one of Java's built-in exceptions.
See Also:
  • Constructor Details

    • FrameworkException

      public FrameworkException()
      Constructs a new framework exception with no message or cause.
    • FrameworkException

      public FrameworkException(String message, Throwable cause)
      Constructs a new framework exception with the specified message and cause.
      Parameters:
      message - the message describing this exception
      cause - the cause of this exception
    • FrameworkException

      public FrameworkException(String message)
      Constructs a new framework exception with the specified message.
      Parameters:
      message - the message describing this exception
    • FrameworkException

      public FrameworkException(Throwable cause)
      Constructs a new framework exception with the specified cause.
      Parameters:
      cause - the cause of this exception