aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/smartcard/PinException.java
blob: 58a7a31c9829551d0c2d04348670b7b449907d70 (plain)
1
2
3
4
5
6
7
package org.sufficientlysecure.keychain.smartcard;

public class PinException extends CardException {
    public PinException(final String detailMessage, final short responseCode) {
        super(detailMessage, responseCode);
    }
}