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