模块  java.smartcardio
软件包  javax.smartcardio

Class CardNotPresentException

  • 实现的所有接口
    Serializable

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

      • CardNotPresentException

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

        public CardNotPresentException​(Throwable cause)
        使用指定的cause和详细消息 (cause==null ? null : cause.toString())构造一个新的 (cause==null ? null : cause.toString())
        参数
        cause - 此异常的原因或null
      • CardNotPresentException

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