24 lines
464 B
Java
24 lines
464 B
Java
package org.bouncycastle.crypto;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class CryptoException extends Exception {
|
|
private Throwable cause;
|
|
|
|
@Override // java.lang.Throwable
|
|
public Throwable getCause() {
|
|
return this.cause;
|
|
}
|
|
|
|
public CryptoException(String str, Throwable th) {
|
|
super(str);
|
|
this.cause = th;
|
|
}
|
|
|
|
public CryptoException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public CryptoException() {
|
|
}
|
|
}
|