ifdef NoNanoHTTPD static virtual NanoHTTPD.Response serve404(S msg default "Not found") { ret subBot_serve404(msg); } endifdef ifndef NoNanoHTTPD static NanoHTTPD.Response serve404(S msg default "Not found") { ret NanoHTTPD.newFixedLengthResponse(NanoHTTPD.Status.NOT_FOUND, NanoHTTPD.MIME_PLAINTEXT, "Code 404 - " + msg); } endifndef