public class InvalidFontFormatException extends RuntimeException
The exception that is thrown when trying to open, load, save or process somehow else some content, that presumably is a font of supported (known) format, but actually is a font of unsupported or unexpected format or not a font at all.
Constructor and Description |
---|
InvalidFontFormatException(String message)
Creates new instance of
|
InvalidFontFormatException(String message,
RuntimeException innerException)
Creates new instance of
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public InvalidFontFormatException(String message)
Creates new instance of
message
- Textual message, that describes the error, can be null or emptypublic InvalidFontFormatException(String message, RuntimeException innerException)
Creates new instance of
message
- Textual message, that describes the error, can be null or emptyinnerException
- The exception that is the cause of the current exception, or a null reference if no inner exception is specified.