java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.smartcardio.CardException
javax.smartcardio.CardNotPresentException
- 所有已实现的接口:
Serializable
当应用程序尝试与没有卡的终端建立连接时抛出异常。
- 自从:
- 1.6
- 参见:
-
构造方法总结
构造方法构造方法描述CardNotPresentException
(String message) 使用指定的详细消息构造一个新的 CardNotPresentException。CardNotPresentException
(String message, Throwable cause) 使用指定的详细消息和原因构造一个新的 CardNotPresentException。CardNotPresentException
(Throwable cause) 构造具有指定原因和(cause==null ? null : cause.toString())
详细消息的新 CardNotPresentException。 -
方法总结
在类 java.lang.Throwable 中声明的方法
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
构造方法详细信息
-
CardNotPresentException
使用指定的详细消息构造一个新的 CardNotPresentException。- 参数:
message
- 详细消息
-
CardNotPresentException
构造具有指定原因和(cause==null ? null : cause.toString())
详细消息的新 CardNotPresentException。- 参数:
cause
- 此异常的原因或 null
-
CardNotPresentException
使用指定的详细消息和原因构造一个新的 CardNotPresentException。- 参数:
message
- 详细消息cause
- 此异常的原因或 null
-