forked from actframework/actframework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathActNotFound.java
More file actions
84 lines (67 loc) · 2.09 KB
/
ActNotFound.java
File metadata and controls
84 lines (67 loc) · 2.09 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package act.view;
import act.Act;
import act.app.SourceInfo;
import act.util.ActError;
import org.osgl.mvc.result.NotFound;
import java.util.List;
public class ActNotFound extends NotFound implements ActError {
private SourceInfo sourceInfo;
public ActNotFound() {
super();
if (Act.isDev()) {
loadSourceInfo();
}
}
public ActNotFound(String message, Object... args) {
super(message, args);
if (Act.isDev()) {
loadSourceInfo();
}
}
public ActNotFound(Throwable cause, String message, Object ... args) {
super(cause, message, args);
if (Act.isDev()) {
loadSourceInfo();
}
}
public ActNotFound(Throwable cause) {
super(cause);
if (Act.isDev()) {
loadSourceInfo();
}
}
private void loadSourceInfo() {
doFillInStackTrace();
Throwable cause = getCause();
sourceInfo = Util.loadSourceInfo(null == cause ? getStackTrace() : cause.getStackTrace(), ActNotFound.class);
}
@Override
public Throwable getCauseOrThis() {
Throwable cause = super.getCause();
return null == cause ? this : cause;
}
public SourceInfo sourceInfo() {
return sourceInfo;
}
public List<String> stackTrace() {
Throwable cause = getCause();
ActError root = this;
if (null == cause) {
cause = this;
root = null;
}
return Util.stackTraceOf(cause, root);
}
public static NotFound create() {
return Act.isDev() ? new ActNotFound() : NotFound.INSTANCE;
}
public static NotFound create(String msg, Object... args) {
return Act.isDev() ? new ActNotFound(msg, args) : new NotFound(msg, args);
}
public static NotFound create(Throwable cause, String msg, Object ... args) {
return Act.isDev() ? new ActNotFound(cause, msg, args) : new NotFound(cause, msg, args);
}
public static NotFound create(Throwable cause) {
return Act.isDev() ? new ActNotFound(cause) : new NotFound(cause);
}
}