Class WorkflowPreprationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ca.corefacility.bioinformatics.irida.exceptions.ExecutionManagerException
-
- ca.corefacility.bioinformatics.irida.exceptions.WorkflowException
-
- ca.corefacility.bioinformatics.irida.exceptions.WorkflowPreprationException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
SampleAnalysisDuplicateException
public class WorkflowPreprationException extends WorkflowException
An exception that gets thrown during the preparation of a workflow.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WorkflowPreprationException()
Constructs a new WorkflowPreprationException with no information.WorkflowPreprationException(java.lang.String message)
Constructs a new WorkflowPreprationException with the given message.WorkflowPreprationException(java.lang.String message, java.lang.Throwable cause)
Constructs a new WorkflowPreprationException with the given message and cause.WorkflowPreprationException(java.lang.Throwable cause)
Constructs a new WorkflowPreprationException with the given cause.
-
-
-
Constructor Detail
-
WorkflowPreprationException
public WorkflowPreprationException()
Constructs a new WorkflowPreprationException with no information.
-
WorkflowPreprationException
public WorkflowPreprationException(java.lang.String message, java.lang.Throwable cause)
Constructs a new WorkflowPreprationException with the given message and cause.- Parameters:
message
- The message explaining the error.cause
- The cause of this message.
-
WorkflowPreprationException
public WorkflowPreprationException(java.lang.String message)
Constructs a new WorkflowPreprationException with the given message.- Parameters:
message
- The message explaining the error.
-
WorkflowPreprationException
public WorkflowPreprationException(java.lang.Throwable cause)
Constructs a new WorkflowPreprationException with the given cause.- Parameters:
cause
- The cause of this error.
-
-