We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 68bfec0 + 4e33c90 commit 6aea318Copy full SHA for 6aea318
1 file changed
core/src/processing/core/PApplet.java
@@ -6532,7 +6532,10 @@ static public String checkExtension(String filename) {
6532
public BufferedReader createReader(String filename) {
6533
InputStream is = createInput(filename);
6534
if (is == null) {
6535
- System.err.println(filename + " does not exist or could not be read");
+ System.err.println("The file \"" + filename + "\" " +
6536
+ "is missing or inaccessible, make sure " +
6537
+ "the URL is valid or that the file has been " +
6538
+ "added to your sketch and is readable.");
6539
return null;
6540
}
6541
return createReader(is);
0 commit comments