Class ExecutorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.gcube.vremanagement.executor.exception.ExecutorException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InputsNullException,InvalidInputsException,LaunchException,PluginInstanceNotFoundException,PluginNotFoundException,SchedulerRemoveException,UnableToInterruptTaskException
- Author:
- Luca Frosini (ISTI - CNR)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor with default message.ExecutorException(String message) Constructor with message.ExecutorException(String message, Throwable cause) Constructor with message and cause.ExecutorException(Throwable cause) Constructor with cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExecutorException
public ExecutorException()Default constructor with default message. -
ExecutorException
Constructor with cause.- Parameters:
cause- the underlying cause of this exception
-
ExecutorException
Constructor with message.- Parameters:
message- the detail message
-
ExecutorException
Constructor with message and cause.- Parameters:
message- the detail messagecause- the underlying cause of this exception
-