Class ExecutionFailedException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.omegazero.common.event.task.ExecutionFailedException
All Implemented Interfaces:
Serializable

public class ExecutionFailedException extends RuntimeException
Exception thrown when a Task or other runnable failed to execute due to an exception.
Since:
2.6
See Also:
  • Constructor Details

    • ExecutionFailedException

      public ExecutionFailedException(String msg)
      Creates a new ExecutionFailedException with the specified message.
      Parameters:
      msg - The error message
      Since:
      2.10
    • ExecutionFailedException

      public ExecutionFailedException(Throwable cause)
      Creates a new ExecutionFailedException with the specified cause.
      Parameters:
      cause - The Throwable that caused this task to fail
    • ExecutionFailedException

      public ExecutionFailedException(String msg, Throwable cause)
      Creates a new ExecutionFailedException with the specified message and cause.
      Parameters:
      msg - The error message
      cause - The Throwable that caused this task to fail
      Since:
      2.10