Class CardNotPresentException

所有已实现的接口:
Serializable

public class CardNotPresentException extends CardException
当应用程序尝试与没有插入卡的终端建立连接时抛出异常。
自版本:
1.6
参见:
  • Constructor Details

    • CardNotPresentException

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

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

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