what-the-bank/sources/org/bouncycastle/util/StreamParsingException.java

17 lines
353 B
Java
Raw Normal View History

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