mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Update libsignal-service-java
This commit is contained in:
parent
d2251ccd14
commit
842f13b2fc
3 changed files with 41 additions and 25 deletions
|
@ -55,7 +55,11 @@ public class FinishLinkCommand implements JsonRpcMultiCommand<FinishLinkCommand.
|
|||
} catch (TimeoutException e) {
|
||||
throw new UserErrorException("Link request timed out, please try again.");
|
||||
} catch (IOException e) {
|
||||
throw new IOErrorException("Link request error: " + e.getMessage(), e);
|
||||
throw new IOErrorException("Link request error: "
|
||||
+ e.getMessage()
|
||||
+ " ("
|
||||
+ e.getClass().getSimpleName()
|
||||
+ ")", e);
|
||||
} catch (UserAlreadyExistsException e) {
|
||||
throw new UserErrorException("The user "
|
||||
+ e.getNumber()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue