Add support for uploading stickers.

Closes #256
This commit is contained in:
Signal Stickers 2019-12-29 16:23:51 -05:00 committed by AsamK
parent 3f315df6c8
commit 23845eab47
6 changed files with 228 additions and 0 deletions

View file

@ -0,0 +1,8 @@
package org.asamk.signal;
public class StickerPackInvalidException extends Exception {
public StickerPackInvalidException(String message) {
super(message);
}
}