public HttpMessage(IHttpRequestResponse ihrr) { host = ihrr.getHost(); port = ihrr.getPort(); try { protocol = ihrr.getProtocol(); request = ihrr.getRequest(); response = ihrr.getResponse(); statusCode = ihrr.getStatusCode(); url = ihrr.getUrl(); comment = ihrr.getComment(); highlight = ihrr.getHighlight(); } catch (Exception e) { e.printStackTrace(); throw new RuntimeException(e); } }