FontException
Inheritance: java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, java.lang.IllegalStateException
public class FontException extends IllegalStateException
Represents common Font processing related exception.
Constructors
Constructor | Description |
---|---|
FontException() | Initializes new FontException object. |
FontException(String message) | Initializes new FontException object. |
FontException(String message, RuntimeException innerException) | Initializes new FontException object. |
FontException()
public FontException()
Initializes new FontException object.
FontException(String message)
public FontException(String message)
Initializes new FontException object.
Parameters:
Parameter | Type | Description |
---|---|---|
message | java.lang.String | A message that describes the error. |
FontException(String message, RuntimeException innerException)
public FontException(String message, RuntimeException innerException)
Initializes new FontException object.
Parameters:
Parameter | Type | Description |
---|---|---|
message | java.lang.String | A message that describes the error. |
innerException | java.lang.RuntimeException | The exception that is the cause of the current exception. |