mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 18:35:37 +01:00
fix inaccurate error message for exec()
This commit is contained in:
@@ -3492,7 +3492,7 @@ public class PApplet implements PConstants {
|
||||
try {
|
||||
return Runtime.getRuntime().exec(args);
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException("Could not open " + join(args, ' '), e);
|
||||
throw new RuntimeException("Exception while attempting " + join(args, ' '), e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user