11 lines
292 B
Java
11 lines
292 B
Java
|
package org.bouncycastle.crypto.io;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class InvalidCipherTextIOException extends CipherIOException {
|
||
|
private static final long serialVersionUID = 1;
|
||
|
|
||
|
public InvalidCipherTextIOException(String str, Throwable th) {
|
||
|
super(str, th);
|
||
|
}
|
||
|
}
|