org.dvb.ui.FontFormatException Maven / Gradle / Ivy
package org.dvb.ui;
/**
* Thrown when attempt is made to read a file describing a font when the
* contents of that file are not valid.
**/
public class FontFormatException extends Exception {
/**
* Constructs a FontFormatException
with null
* as its error detail message.
*/
public FontFormatException() {
super();
}
/**
* Constructs a FontFormatException
with the specified detail
* message. The error message string s
can later be
* retrieved by the {@link java.lang.Throwable#getMessage}
* method of class java.lang.Throwable
.
*
* @param s the detail message.
*/
public FontFormatException(String s) {
super(s);
}
}