MCPcopy Index your code
hub / github.com/processing/processing / send404

Method send404

app/src/processing/app/WebServer.java:435–442  ·  view source on GitHub ↗
(PrintStream ps)

Source from the content-addressed store, hash-verified

433
434
435 void send404(PrintStream ps) throws IOException {
436 ps.write(EOL);
437 ps.write(EOL);
438 ps.print("<html><body><h1>404 Not Found</h1>"+
439 "The requested resource was not found.</body></html>");
440 ps.write(EOL);
441 ps.write(EOL);
442 }
443
444
445 void sendFile(File targ, PrintStream ps) throws IOException {

Callers 1

handleClientMethod · 0.95

Calls 2

writeMethod · 0.65
printMethod · 0.65

Tested by

no test coverage detected