mirror of
https://github.com/aljazceru/signal-cli.git
synced 2025-12-18 22:54:20 +01:00
Print stack trace of exception causes in verbose mode
This commit is contained in:
@@ -78,10 +78,10 @@ public class JoinGroupCommand implements JsonRpcLocalCommand {
|
||||
+ e.getMessage()
|
||||
+ " ("
|
||||
+ e.getClass().getSimpleName()
|
||||
+ ")");
|
||||
+ ")", e);
|
||||
} catch (DBusExecutionException e) {
|
||||
throw new UnexpectedErrorException("Failed to send message: " + e.getMessage() + " (" + e.getClass()
|
||||
.getSimpleName() + ")");
|
||||
.getSimpleName() + ")", e);
|
||||
} catch (GroupLinkNotActiveException e) {
|
||||
throw new UserErrorException("Group link is not valid: " + e.getMessage());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user