what-the-bank/sources/org/jmrtd/PACEException.java

17 lines
379 B
Java

package org.jmrtd;
import net.sf.scuba.smartcards.CardServiceException;
/* loaded from: classes6.dex */
public class PACEException extends CardServiceException {
private static final long serialVersionUID = 8383980807753919040L;
public PACEException(String str) {
super(str);
}
public PACEException(String str, int i) {
super(str, i);
}
}