Class UploadConnectionException
- 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.UploadConnectionException
-
- All Implemented Interfaces:
java.io.Serializable
public class UploadConnectionException extends UploadException
Thrown when a connection to a remote site for uploading data fails.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UploadConnectionException()
Constructs a new UploadConnectionException with no information.UploadConnectionException(java.lang.String message)
Constructs a new UploadConnectionException with the given message.UploadConnectionException(java.lang.String message, java.lang.Throwable cause)
Constructs a new UploadConnectionException with the given message and cause.UploadConnectionException(java.lang.Throwable cause)
Constructs a new UploadConnectionException with the given cause.
-
-
-
Constructor Detail
-
UploadConnectionException
public UploadConnectionException()
Constructs a new UploadConnectionException with no information.
-
UploadConnectionException
public UploadConnectionException(java.lang.String message, java.lang.Throwable cause)
Constructs a new UploadConnectionException with the given message and cause.- Parameters:
message
- The message explaining the error.cause
- The cause of this message.
-
UploadConnectionException
public UploadConnectionException(java.lang.String message)
Constructs a new UploadConnectionException with the given message.- Parameters:
message
- The message explaining the error.
-
UploadConnectionException
public UploadConnectionException(java.lang.Throwable cause)
Constructs a new UploadConnectionException with the given cause.- Parameters:
cause
- The cause of this error.
-
-