-
-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathSketchException.java
More file actions
30 lines (23 loc) · 1.03 KB
/
SketchException.java
File metadata and controls
30 lines (23 loc) · 1.03 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
// temporary band-aid class to support modes which are still looking here for the now-refactored class.
// - josh giesbrecht
package processing.app;
@Deprecated
// please migrate to using processing.utils.SketchException instead! all class functionality is the same as before.
public class SketchException extends processing.utils.SketchException {
// Idea complained without all these super wrappers for constructors. ¯\_(ツ)_/¯ sure, why not?
public SketchException(String message) {
super(message);
}
public SketchException(String message, boolean showStackTrace) {
super(message, showStackTrace);
}
public SketchException(String message, int file, int line) {
super(message, file, line);
}
public SketchException(String message, int file, int line, int column) {
super(message, file, line, column);
}
public SketchException(String message, int file, int line, int column, boolean showStackTrace) {
super(message, file, line, column, showStackTrace);
}
}