java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.smartcardio.CardException
javax.smartcardio.CardNotPresentException
- 所有已实现的接口:
-
Serializable
当应用程序尝试与没有插入卡的终端建立连接时抛出异常。
- 自版本:
- 1.6
- 参见:
-
Constructor Summary
ConstructorsConstructorDescriptionCardNotPresentException(String message) 使用指定的详细消息构造一个新的CardNotPresentException。CardNotPresentException(String message, Throwable cause) 使用指定的详细消息和原因构造一个新的CardNotPresentException。CardNotPresentException(Throwable cause) 使用指定的原因和(cause==null ? null : cause.toString())的详细消息构造一个新的CardNotPresentException。 -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CardNotPresentException
使用指定的详细消息构造一个新的CardNotPresentException。- 参数:
-
message- 详细消息
-
CardNotPresentException
使用指定的原因和(cause==null ? null : cause.toString())的详细消息构造一个新的CardNotPresentException。- 参数:
-
cause- 此异常的原因,或为null
-
CardNotPresentException
使用指定的详细消息和原因构造一个新的CardNotPresentException。- 参数:
-
message- 详细消息 -
cause- 此异常的原因,或为null
-