package code; import java.io.IOException; import com.sun.net.httpserver.HttpExchange; import com.sun.net.httpserver.HttpHandler; public class MissingPage implements HttpHandler { @Override public void handle(HttpExchange exchange) throws IOException { Helper.pageNotFound(exchange); } }