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

19 lines
483 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.jmrtd;
import net.sf.scuba.smartcards.CardServiceException;
/* loaded from: classes6.dex */
public class BACDeniedException extends CardServiceException {
private static final long serialVersionUID = -7094953658210693249L;
private BACKeySpec bacKey;
public BACDeniedException(String str, BACKeySpec bACKeySpec, int i) {
super(str, i);
this.bacKey = bACKeySpec;
}
public BACKeySpec getBACKey() {
return this.bacKey;
}
}