what-the-bank/sources/org/bouncycastle/crypto/io/CipherIOException.java

20 lines
454 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.io;
import java.io.IOException;
/* loaded from: classes6.dex */
public class CipherIOException extends IOException {
private static final long serialVersionUID = 1;
private final Throwable cause;
@Override // java.lang.Throwable
public Throwable getCause() {
return this.cause;
}
public CipherIOException(String str, Throwable th) {
super(str);
this.cause = th;
}
}