Class StorageException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ca.corefacility.bioinformatics.irida.exceptions.StorageException
-
- All Implemented Interfaces:
java.io.Serializable
public class StorageException extends java.lang.RuntimeException
When a database error occurs- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StorageException(java.lang.String message)
Construct a newStorageException
with the specified message.StorageException(java.lang.String message, java.lang.Throwable cause)
Construct a newStorageException
with the specified message and original cause.
-
-
-
Constructor Detail
-
StorageException
public StorageException(java.lang.String message)
Construct a newStorageException
with the specified message.- Parameters:
message
- the message explaining the exception.
-
StorageException
public StorageException(java.lang.String message, java.lang.Throwable cause)
Construct a newStorageException
with the specified message and original cause.- Parameters:
message
- the message explaining the exception.cause
- the original cause of the exception
-
-