Class EntityNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ca.corefacility.bioinformatics.irida.exceptions.EntityNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
UIEntityNotFoundException
public class EntityNotFoundException extends java.lang.RuntimeException
When an entity cannot be found in the database.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EntityNotFoundException(java.lang.String message)
Construct a newEntityNotFoundException
with the specified message.EntityNotFoundException(java.lang.String message, java.lang.Throwable cause)
Construct a newEntityNotFoundException
with the specified message and cause.
-
-
-
Constructor Detail
-
EntityNotFoundException
public EntityNotFoundException(java.lang.String message)
Construct a newEntityNotFoundException
with the specified message.- Parameters:
message
- the message explaining the exception.
-
EntityNotFoundException
public EntityNotFoundException(java.lang.String message, java.lang.Throwable cause)
Construct a newEntityNotFoundException
with the specified message and cause.- Parameters:
message
- the message explaining the exception.cause
- the original cause of the exception
-
-