You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// even when successful, the following GroupApi call throws a GitLabApiException
try {
groupApi.removeMember(foundGroup.getId(), gitlabUser.getId());
} catch(GitLabApiException e) {
System.out.println(e.getHttpStatus()); // prints 200
System.out.println(e.getMessage()); // prints OK
System.out.println(e.getReason()); // prints OK
}