what-the-bank/sources/org/bouncycastle/crypto/InvalidCipherTextException....

16 lines
358 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto;
/* loaded from: classes6.dex */
public class InvalidCipherTextException extends CryptoException {
public InvalidCipherTextException(String str, Throwable th) {
super(str, th);
}
public InvalidCipherTextException(String str) {
super(str);
}
public InvalidCipherTextException() {
}
}