Class ExecutionManagerConfigurationException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ExecutionManagerConfigurationException
    extends java.lang.Exception
    An exception that gets thrown for an invalid configuration option for an execution manager.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ExecutionManagerConfigurationException​(java.lang.String message, java.lang.String configurationProperty)
      Constructs a new ExecutionManagerConfigurationException with the given property name.
      ExecutionManagerConfigurationException​(java.lang.String message, java.lang.String configurationProperty, java.lang.Throwable cause)
      Constructs a new ExecutionManagerConfigurationException with the given message and cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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

      • ExecutionManagerConfigurationException

        public ExecutionManagerConfigurationException​(java.lang.String message,
                                                      java.lang.String configurationProperty,
                                                      java.lang.Throwable cause)
        Constructs a new ExecutionManagerConfigurationException with the given message and cause.
        Parameters:
        message - The message explaining the error.
        configurationProperty - The configuration property causing the issue.
        cause - The cause of this message.
      • ExecutionManagerConfigurationException

        public ExecutionManagerConfigurationException​(java.lang.String message,
                                                      java.lang.String configurationProperty)
        Constructs a new ExecutionManagerConfigurationException with the given property name.
        Parameters:
        message - The property name causing the error.
        configurationProperty - The configuration property causing the issue.