X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/4b5bfcba8001d23768ad1131b76eaf6325d260d4..ef5d3a65f8de2ae8e17adfb7c307d88b0c04778a:/src/main/java/cli/GroupNotFoundException.java diff --git a/src/main/java/cli/GroupNotFoundException.java b/src/main/java/cli/GroupNotFoundException.java new file mode 100644 index 00000000..85e1cf0b --- /dev/null +++ b/src/main/java/cli/GroupNotFoundException.java @@ -0,0 +1,14 @@ +package cli; + +public class GroupNotFoundException extends Exception { + private final byte[] groupId; + + public GroupNotFoundException(byte[] groupId) { + super(); + this.groupId = groupId; + } + + public byte[] getGroupId() { + return groupId; + } +}