22 lines
472 B
Java
22 lines
472 B
Java
|
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;
|
||
|
}
|
||
|
}
|