Class GalaxyDatasetNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ca.corefacility.bioinformatics.irida.exceptions.ExecutionManagerException
-
- ca.corefacility.bioinformatics.irida.exceptions.galaxy.GalaxyDatasetException
-
- ca.corefacility.bioinformatics.irida.exceptions.galaxy.GalaxyDatasetNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class GalaxyDatasetNotFoundException extends GalaxyDatasetException
Exception thrown if a given dataset is not found in galaxy- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GalaxyDatasetNotFoundException()
Constructs a new GalaxyDatasetNotFoundException with no information.GalaxyDatasetNotFoundException(java.lang.String message)
Constructs a new GalaxyDatasetNotFoundException with the given message.GalaxyDatasetNotFoundException(java.lang.String message, java.lang.Throwable cause)
Constructs a new GalaxyDatasetNotFoundException with the given message and cause.GalaxyDatasetNotFoundException(java.lang.Throwable cause)
Constructs a new GalaxyDatasetNotFoundException with the given cause.
-
-
-
Constructor Detail
-
GalaxyDatasetNotFoundException
public GalaxyDatasetNotFoundException()
Constructs a new GalaxyDatasetNotFoundException with no information.
-
GalaxyDatasetNotFoundException
public GalaxyDatasetNotFoundException(java.lang.String message, java.lang.Throwable cause)
Constructs a new GalaxyDatasetNotFoundException with the given message and cause.- Parameters:
message
- The message explaining the error.cause
- The cause of this message.
-
GalaxyDatasetNotFoundException
public GalaxyDatasetNotFoundException(java.lang.String message)
Constructs a new GalaxyDatasetNotFoundException with the given message.- Parameters:
message
- The message explaining the error.
-
GalaxyDatasetNotFoundException
public GalaxyDatasetNotFoundException(java.lang.Throwable cause)
Constructs a new GalaxyDatasetNotFoundException with the given cause.- Parameters:
cause
- The cause of this error.
-
-