}
}
public void parseDefault(String line) {
if (line.startsWith("200")) {
reply = new DefaultReply(ResponseCode.OK);
} else if (line.startsWith("400")) {
reply = new DefaultReply(ResponseCode.ERROR);
} else {
System.err.println(String.format("Expected '200 OK' or '400 ERROR', but got: %s", line));
reply = null;
}