what-the-bank/sources/org/bouncycastle/jcajce/provider/asymmetric/util/ExtendedInvalidKeySpecExcep...

19 lines
481 B
Java
Raw Permalink Normal View History

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