edu.isi.nlp.files.NoSuchKeyException Maven / Gradle / Ivy
The newest version!
package edu.isi.nlp.files;
/**
* Thrown to indicate that a non-existent key has been requested.
*
* @author Constantine Lignos, Ryan Gabbard
*/
public final class NoSuchKeyException extends RuntimeException {
NoSuchKeyException() {
super();
}
NoSuchKeyException(String message) {
super(message);
}
NoSuchKeyException(String message, Throwable cause) {
super(message, cause);
}
NoSuchKeyException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy