Module  java.smartcardio
软件包  javax.smartcardio

Class CardNotPresentException

  • All Implemented Interfaces:
    Serializable


    public class CardNotPresentException
    extends CardException
    当应用程序尝试与没有存在卡的终端建立连接时抛出异常。
    从以下版本开始:
    1.6
    另请参见:
    Serialized Form
    • 构造方法详细信息

      • CardNotPresentException

        public CardNotPresentException​(String message)
        构造一个新的具有指定详细消息的CardNotPresentException。
        参数
        message - 详细信息
      • CardNotPresentException

        public CardNotPresentException​(Throwable cause)
        构造新的具有指定原因的 (cause==null ? null : cause.toString())和详细信息为 (cause==null ? null : cause.toString())
        参数
        cause - 此异常的原因或为null
      • CardNotPresentException

        public CardNotPresentException​(String message,
                                       Throwable cause)
        构造一个新的具有指定的详细信息和原因的CardNotPresentException。
        参数
        message - 详细信息
        cause - 此异常的原因或为null