mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
14 lines
295 B
Java
14 lines
295 B
Java
package org.asamk.textsecure;
|
|
|
|
public class GroupNotFoundException extends Exception {
|
|
private final byte[] groupId;
|
|
|
|
public GroupNotFoundException(byte[] groupId) {
|
|
super();
|
|
this.groupId = groupId;
|
|
}
|
|
|
|
public byte[] getGroupId() {
|
|
return groupId;
|
|
}
|
|
}
|