Class ExecutionManagerDownloadException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ca.corefacility.bioinformatics.irida.exceptions.ExecutionManagerException
-
- ca.corefacility.bioinformatics.irida.exceptions.ExecutionManagerDownloadException
-
- All Implemented Interfaces:
java.io.Serializable
public class ExecutionManagerDownloadException extends ExecutionManagerException
Thrown when there is an issue downloading data from an execution manager.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExecutionManagerDownloadException()
Constructs a new ExecutionManagerDownloadException with no information.ExecutionManagerDownloadException(java.lang.String message)
Constructs a new ExecutionManagerDownloadException with the given message.ExecutionManagerDownloadException(java.lang.String message, java.lang.Throwable cause)
Constructs a new ExecutionManagerDownloadException with the given message and cause.ExecutionManagerDownloadException(java.lang.Throwable cause)
Constructs a new ExecutionManagerDownloadException with the given cause.
-
-
-
Constructor Detail
-
ExecutionManagerDownloadException
public ExecutionManagerDownloadException()
Constructs a new ExecutionManagerDownloadException with no information.
-
ExecutionManagerDownloadException
public ExecutionManagerDownloadException(java.lang.String message, java.lang.Throwable cause)
Constructs a new ExecutionManagerDownloadException with the given message and cause.- Parameters:
message
- The message explaining the error.cause
- The cause of this message.
-
ExecutionManagerDownloadException
public ExecutionManagerDownloadException(java.lang.String message)
Constructs a new ExecutionManagerDownloadException with the given message.- Parameters:
message
- The message explaining the error.
-
ExecutionManagerDownloadException
public ExecutionManagerDownloadException(java.lang.Throwable cause)
Constructs a new ExecutionManagerDownloadException with the given cause.- Parameters:
cause
- The cause of this error.
-
-