mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 11:00:38 +00:00
Cleanup manager package
This commit is contained in:
parent
3040da99c4
commit
5cccf52103
55 changed files with 190 additions and 160 deletions
|
@ -7,7 +7,7 @@ import org.asamk.signal.commands.exceptions.CommandException;
|
|||
import org.asamk.signal.commands.exceptions.IOErrorException;
|
||||
import org.asamk.signal.commands.exceptions.UserErrorException;
|
||||
import org.asamk.signal.manager.ProvisioningManager;
|
||||
import org.asamk.signal.manager.UserAlreadyExists;
|
||||
import org.asamk.signal.manager.api.UserAlreadyExistsException;
|
||||
import org.asamk.signal.output.OutputWriter;
|
||||
import org.asamk.signal.output.PlainTextWriter;
|
||||
import org.slf4j.Logger;
|
||||
|
@ -49,7 +49,7 @@ public class LinkCommand implements ProvisioningCommand {
|
|||
throw new UserErrorException("Link request timed out, please try again.");
|
||||
} catch (IOException e) {
|
||||
throw new IOErrorException("Link request error: " + e.getMessage(), e);
|
||||
} catch (UserAlreadyExists e) {
|
||||
} catch (UserAlreadyExistsException e) {
|
||||
throw new UserErrorException("The user "
|
||||
+ e.getNumber()
|
||||
+ " already exists\nDelete \""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue