All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.entur.android.nfc.websocket.server.readers.AcsCardException Maven / Gradle / Ivy

The newest version!
package no.entur.android.nfc.websocket.server.readers;

import javax.smartcardio.CardException;

public class AcsCardException extends CardException {

    public AcsCardException(String message) {
        super(message);
    }

    public AcsCardException(Throwable cause) {
        super(cause);
    }

    public AcsCardException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy