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; } }