
comanche.ErrorRequestHandler Maven / Gradle / Ivy
package comanche;
import java.io.*;
public class ErrorRequestHandler implements RequestHandler {
public void handleRequest (Request r) throws IOException {
r.out.print("HTTP/1.0 404 Not Found\n\n");
r.out.print("Document not found.");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy