19 lines
463 B
Java
19 lines
463 B
Java
|
package org.bouncycastle.jce.exception;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class ExtIOException extends IOException implements ExtException {
|
||
|
private Throwable cause;
|
||
|
|
||
|
@Override // java.lang.Throwable, org.bouncycastle.jce.exception.ExtException
|
||
|
public Throwable getCause() {
|
||
|
return this.cause;
|
||
|
}
|
||
|
|
||
|
public ExtIOException(String str, Throwable th) {
|
||
|
super(str);
|
||
|
this.cause = th;
|
||
|
}
|
||
|
}
|