Fix error type for dbus rate limit challenge

This commit is contained in:
AsamK 2021-11-06 15:41:58 +01:00
parent 2ab42ca547
commit eec7aec069
2 changed files with 3 additions and 5 deletions

View file

@ -1,6 +1,5 @@
package org.asamk;
import org.asamk.signal.commands.exceptions.IOErrorException;
import org.freedesktop.dbus.DBusPath;
import org.freedesktop.dbus.Struct;
import org.freedesktop.dbus.annotations.DBusProperty;
@ -166,7 +165,7 @@ public interface Signal extends DBusInterface {
String uploadStickerPack(String stickerPackPath) throws Error.Failure;
void submitRateLimitChallenge(String challenge, String captchaString) throws IOErrorException;
void submitRateLimitChallenge(String challenge, String captchaString) throws Error.Failure;
class MessageReceivedV2 extends DBusSignal {