public class KeyNotFoundException extends SystemException
Constructor and Description |
---|
KeyNotFoundException()
Initializes a new instance of the KeyNotFoundException class using default property values.
|
KeyNotFoundException(java.lang.String message)
Initializes a new instance of the KeyNotFoundException class with the specified error message.
|
KeyNotFoundException(java.lang.String message,
java.lang.RuntimeException innerException)
Initializes a new instance of the KeyNotFoundException class with the specified error message and a reference to the inner exception that is the cause of this exception.
|
public KeyNotFoundException()
public KeyNotFoundException(java.lang.String message)
message
- The message that describes the error.public KeyNotFoundException(java.lang.String message, java.lang.RuntimeException innerException)
message
- The error message that explains the reason for the exception.innerException
- The exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.