FormattingException.java
1.15 KB
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
45
46
47
48
49
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.fontengine.inlineformatting;
import com.adobe.fontengine.FontEngineException;
public class FormattingException
extends FontEngineException {
static final long serialVersionUID = 1;
protected final int start;
protected final int limit;
public FormattingException(int start, int limit) {
this.start = start;
this.limit = limit;
}
public FormattingException(String message, int start, int limit) {
super(message);
this.start = start;
this.limit = limit;
}
public FormattingException(String message, Throwable cause, int start, int limit) {
super(message, cause);
this.start = start;
this.limit = limit;
}
public FormattingException(Throwable cause, int start, int limit) {
super(cause);
this.start = start;
this.limit = limit;
}
public int getStart() {
return this.start;
}
public int getLimit() {
return this.limit;
}
public String toString() {
return super.toString() + " (start=" + this.start + ", limit=" + this.limit + ")";
}
}