mirror of
https://github.com/aljazceru/signal-cli.git
synced 2025-12-24 17:44:22 +01:00
12 lines
326 B
Java
12 lines
326 B
Java
package org.asamk.signal;
|
|
|
|
import org.freedesktop.dbus.exceptions.DBusExecutionException;
|
|
import org.whispersystems.util.Base64;
|
|
|
|
public class GroupNotFoundException extends DBusExecutionException {
|
|
|
|
public GroupNotFoundException(byte[] groupId) {
|
|
super("Group not found: " + Base64.encodeBytes(groupId));
|
|
}
|
|
}
|