InvalidGlyphException.java
988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.fontengine.font;
import com.adobe.fontengine.font.Font;
import com.adobe.fontengine.font.InvalidFontException;
public class InvalidGlyphException
extends InvalidFontException {
static final long serialVersionUID = 1;
public InvalidGlyphException() {
}
public InvalidGlyphException(Font font) {
super(font);
}
public InvalidGlyphException(String message) {
super(message);
}
public InvalidGlyphException(String message, Font font) {
super(message, font);
}
public InvalidGlyphException(String message, Throwable cause) {
super(message, cause);
}
public InvalidGlyphException(String message, Throwable cause, Font font) {
super(message, cause, font);
}
public InvalidGlyphException(Throwable cause) {
super(cause);
}
public InvalidGlyphException(Throwable cause, Font font) {
super(cause, font);
}
}