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

12 lines
241 B
Java
Raw Normal View History

2019-07-07 18:14:47 +10:00
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.");
}
}