binary-data-format/bdf/exception/UndefinedKeyException.java

12 lines
241 B
Java
Executable File

package bdf.exception;
public class UndefinedKeyException extends RuntimeException
{
private static final long serialVersionUID = 1L;
public UndefinedKeyException(String key)
{
super("The key \""+key+"\" has not been defined.");
}
}