Class UploadException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ca.corefacility.bioinformatics.irida.exceptions.ExecutionManagerException
-
- ca.corefacility.bioinformatics.irida.exceptions.UploadException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
CreateLibraryException
,ExecutionManagerObjectNotFoundException
,UploadConnectionException
,UploadErrorException
,UploadTimeoutException
public class UploadException extends ExecutionManagerException
Exception that gets thrown when uploading data to a separate data management system (e.g. Galaxy).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UploadException()
Constructs a new UploadException with no information.UploadException(java.lang.String message)
Constructs a new UploadException with the given message.UploadException(java.lang.String message, java.lang.Throwable cause)
Constructs a new UploadException with the given message and cause.UploadException(java.lang.Throwable cause)
Constructs a new UploadException with the given cause.
-
-
-
Constructor Detail
-
UploadException
public UploadException()
Constructs a new UploadException with no information.
-
UploadException
public UploadException(java.lang.String message, java.lang.Throwable cause)
Constructs a new UploadException with the given message and cause.- Parameters:
message
- The message explaining the error.cause
- The cause of this message.
-
UploadException
public UploadException(java.lang.String message)
Constructs a new UploadException with the given message.- Parameters:
message
- The message explaining the error.
-
UploadException
public UploadException(java.lang.Throwable cause)
Constructs a new UploadException with the given cause.- Parameters:
cause
- The cause of this error.
-
-