mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
tagging old location as deprecated
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
// temporary band-aid class to support modes which are still looking here for the now-refactored class.
|
||||
// (would be good to delete this file once all modes are updated to use processing.utils.SketchException)
|
||||
// - josh giesbrecht
|
||||
|
||||
package processing.app;
|
||||
|
||||
// extends the refactored class, to defer functionality there and also to hopefully play nicely when
|
||||
// exception-handling goes to see if this is a processing.utils.SketchException or not!
|
||||
@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);
|
||||
}
|
||||
@@ -27,4 +27,4 @@ public class SketchException extends processing.utils.SketchException {
|
||||
public SketchException(String message, int file, int line, int column, boolean showStackTrace) {
|
||||
super(message, file, line, column, showStackTrace);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user