what-the-bank/sources/com/kofax/mobile/sdk/extract/id/AggregateException.java

22 lines
562 B
Java

package com.kofax.mobile.sdk.extract.id;
/* loaded from: classes3.dex */
public class AggregateException extends RuntimeException {
private final Exception adE;
private final Exception adF;
public AggregateException(Exception exc, Exception exc2) {
super(exc != null ? exc.getMessage() : exc2.getMessage(), exc != null ? exc : exc2);
this.adE = exc;
this.adF = exc2;
}
public Exception getFrontException() {
return this.adE;
}
public Exception getBackException() {
return this.adF;
}
}