what-the-bank/sources/org/bouncycastle/util/io/pem/PemGenerationException.java

23 lines
483 B
Java
Raw Normal View History

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