19 lines
481 B
Java
19 lines
481 B
Java
|
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;
|
||
|
}
|
||
|
}
|