mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 02:50:39 +00:00
Refactoring, move more functionality into Manager
This commit is contained in:
parent
4b5bfcba80
commit
ef5d3a65f8
5 changed files with 258 additions and 190 deletions
14
src/main/java/cli/GroupNotFoundException.java
Normal file
14
src/main/java/cli/GroupNotFoundException.java
Normal file
|
@ -0,0 +1,14 @@
|
|||
package cli;
|
||||
|
||||
public class GroupNotFoundException extends Exception {
|
||||
private final byte[] groupId;
|
||||
|
||||
public GroupNotFoundException(byte[] groupId) {
|
||||
super();
|
||||
this.groupId = groupId;
|
||||
}
|
||||
|
||||
public byte[] getGroupId() {
|
||||
return groupId;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue