mirror of
https://github.com/AsamK/signal-cli.git
synced 2026-08-08 02:36:07 +00:00
15 lines
278 B
Java
15 lines
278 B
Java
package cli;
|
|
|
|
public class GroupNotFoundException extends Exception {
|
|
private final byte[] groupId;
|
|
|
|
public GroupNotFoundException(byte[] groupId) {
|
|
super();
|
|
this.groupId = groupId;
|
|
}
|
|
|
|
public byte[] getGroupId() {
|
|
return groupId;
|
|
}
|
|
}
|