Class NoSuchValueException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ca.corefacility.bioinformatics.irida.exceptions.NoSuchValueException
-
- All Implemented Interfaces:
java.io.Serializable
public class NoSuchValueException extends java.lang.Exception
Exception thrown when attempting to access a value that does not currently exist.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoSuchValueException()
Constructs a new NoSuchValueException with no information.NoSuchValueException(java.lang.String message)
Constructs a new NoSuchValueException with the given message.NoSuchValueException(java.lang.String message, java.lang.Throwable cause)
Constructs a new NoSuchValueException with the given message and cause.NoSuchValueException(java.lang.Throwable cause)
Constructs a new NoSuchValueException with the given cause.
-
-
-
Constructor Detail
-
NoSuchValueException
public NoSuchValueException()
Constructs a new NoSuchValueException with no information.
-
NoSuchValueException
public NoSuchValueException(java.lang.String message, java.lang.Throwable cause)
Constructs a new NoSuchValueException with the given message and cause.- Parameters:
message
- The message explaining the error.cause
- The cause of this message.
-
NoSuchValueException
public NoSuchValueException(java.lang.String message)
Constructs a new NoSuchValueException with the given message.- Parameters:
message
- The message explaining the error.
-
NoSuchValueException
public NoSuchValueException(java.lang.Throwable cause)
Constructs a new NoSuchValueException with the given cause.- Parameters:
cause
- The cause of this error.
-
-