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

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

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








© 2015 - 2024 Weber Informatics LLC | Privacy Policy