16 lines
358 B
Java
16 lines
358 B
Java
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() {
|
|
}
|
|
}
|