All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dvb.ui.FontNotAvailableException Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show 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);
    }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy