Signal-Android/libsignal/service/src/main/java/org/whispersystems/signalservice/api/crypto/InvalidCiphertextException....

12 lines
262 B
Java

package org.whispersystems.signalservice.api.crypto;
public class InvalidCiphertextException extends Exception {
public InvalidCiphertextException(Exception nested) {
super(nested);
}
public InvalidCiphertextException(String s) {
super(s);
}
}