Class ExecutionManagerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ca.corefacility.bioinformatics.irida.exceptions.ExecutionManagerException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
DeleteGalaxyObjectFailedException
,ExecutionManagerDownloadException
,GalaxyDatasetException
,GalaxyToolDataTableException
,UploadException
,WorkflowException
,WorkflowUploadException
public class ExecutionManagerException extends java.lang.Exception
Exception that gets thrown when dealing with data or workflows from an external execution manager (e.g. Galaxy).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExecutionManagerException()
Constructs a new ExecutionManagerException with no information.ExecutionManagerException(java.lang.String message)
Constructs a new ExecutionManagerException with the given message.ExecutionManagerException(java.lang.String message, java.lang.Throwable cause)
Constructs a new ExecutionManagerException with the given message and cause.ExecutionManagerException(java.lang.Throwable cause)
Constructs a new ExecutionManagerException with the given cause.
-
-
-
Constructor Detail
-
ExecutionManagerException
public ExecutionManagerException()
Constructs a new ExecutionManagerException with no information.
-
ExecutionManagerException
public ExecutionManagerException(java.lang.String message, java.lang.Throwable cause)
Constructs a new ExecutionManagerException with the given message and cause.- Parameters:
message
- The message explaining the error.cause
- The cause of this message.
-
ExecutionManagerException
public ExecutionManagerException(java.lang.String message)
Constructs a new ExecutionManagerException with the given message.- Parameters:
message
- The message explaining the error.
-
ExecutionManagerException
public ExecutionManagerException(java.lang.Throwable cause)
Constructs a new ExecutionManagerException with the given cause.- Parameters:
cause
- The cause of this error.
-
-