15 lines
295 B
Java
15 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;
|
|
}
|
|
}
|