org.dvb.ui.FontNotAvailableException Maven / Gradle / Ivy
The newest version!
package org.dvb.ui;
/**
* Thrown when attempt is made to instantiate a font that cannot be located.
**/
public class FontNotAvailableException extends Exception {
/**
* Constructs a FontNotAvailableException
with null
* as its error detail message.
*/
public FontNotAvailableException() {
super();
}
/**
* Constructs a FontNotAvailableException
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 FontNotAvailableException(String s) {
super(s);
}
}