mirror of
https://github.com/aljazceru/signal-cli.git
synced 2026-01-10 17:34:25 +01:00
15 lines
370 B
Java
15 lines
370 B
Java
package org.asamk.signal;
|
|
|
|
import org.freedesktop.dbus.exceptions.DBusExecutionException;
|
|
|
|
public class GroupNotFoundException extends DBusExecutionException {
|
|
|
|
public GroupNotFoundException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public GroupNotFoundException(byte[] groupId) {
|
|
super("Group not found: " + Base64.encodeBytes(groupId));
|
|
}
|
|
}
|