Skip to content

Commit

Permalink
Update JavaBuild.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefterv committed Dec 14, 2024
1 parent 91101c3 commit 63b251b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/processing/mode/java/JavaBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public PreprocessorResult preprocess(File srcFolder,
try{
library = mode.getLibrary(entry);
}catch (processing.app.SketchException e){
throw new SketchException(e.getMessage());
throw new SketchException(e.getMessage(), e.getCodeIndex(), e.getCodeLine(), e.getCodeColumn(), e.isStackTraceEnabled());
}

if (library != null) {
Expand Down

0 comments on commit 63b251b

Please sign in to comment.