From 627eafb06c21159ee1f7b4384ef3035a85992f00 Mon Sep 17 00:00:00 2001 From: josh giesbrecht Date: Fri, 15 Aug 2025 10:46:44 -0700 Subject: [PATCH] tagging old location as deprecated --- app/src/processing/app/SketchException.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/processing/app/SketchException.java b/app/src/processing/app/SketchException.java index e2a9fabc8..82b16fb89 100644 --- a/app/src/processing/app/SketchException.java +++ b/app/src/processing/app/SketchException.java @@ -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); } -} \ No newline at end of file +}