Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 4b7a556

Browse files
committed
include the status line
1 parent e36b2f5 commit 4b7a556

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java/main/com/topcoder/direct/services/view/action/contest/launch/GetGroupMemberAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ private RestResult<GroupMember> getGroupMemberByGid(Long gid) throws Exception {
199199
HttpEntity entity = response.getEntity();
200200

201201
if (response.getStatusLine().getStatusCode() != HttpStatus.SC_OK) {
202-
throw new Exception("Failed to get Group Member for " + gid);
202+
throw new Exception("Failed to get Group Member for " + gid + " - " + response.getStatusLine().toString());
203203
}
204204

205205
jsonNode = objectMapper.readTree(entity.getContent());

0 commit comments

Comments
 (0)