- throw new UnexpectedErrorException("Failed to send message: " + e.getMessage());
- } catch (GroupNotFoundException | NotAGroupMemberException e) {
+ throw new UnexpectedErrorException("Failed to send message: " + e.getMessage() + " (" + e.getClass()
+ .getSimpleName() + ")", e);
+ } catch (GroupNotFoundException | NotAGroupMemberException | GroupSendingNotAllowedException e) {