- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.smartcardio.CardException
-
- javax.smartcardio.CardNotPresentException
-
- 实现的所有接口
-
Serializable
public class CardNotPresentException extends CardException
当应用程序尝试与没有卡的终端建立连接时抛出异常。- 从以下版本开始:
- 1.6
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 CardNotPresentException(String message)
使用指定的详细消息构造一个新的CardNotPresentException。CardNotPresentException(String message, Throwable cause)
使用指定的详细消息和原因构造一个新的CardNotPresentException。CardNotPresentException(Throwable cause)
使用指定的cause和详细消息(cause==null ? null : cause.toString())
构造一个新的(cause==null ? null : cause.toString())
。
-
方法摘要
-
-
-
构造方法详细信息
-
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
-
-