what-the-bank/sources/com/kofax/mobile/sdk/extract/server/ExtractionServerException.java

22 lines
472 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.kofax.mobile.sdk.extract.server;
/* loaded from: classes3.dex */
public class ExtractionServerException extends RuntimeException {
private final int afP;
private final String tC;
public ExtractionServerException(int i, String str) {
this.afP = i;
this.tC = str;
}
@Override // java.lang.Throwable
public String getMessage() {
return this.tC;
}
public int getCode() {
return this.afP;
}
}