- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.smartcardio.CardException
-
- javax.smartcardio.CardNotPresentException
-
- All Implemented Interfaces:
-
Serializable
public class CardNotPresentException extends CardException
当应用程序尝试与没有存在卡的终端建立连接时抛出异常。- 从以下版本开始:
- 1.6
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 CardNotPresentException(String message)
构造一个新的具有指定详细消息的CardNotPresentException。CardNotPresentException(String message, Throwable cause)
构造一个新的具有指定的详细信息和原因的CardNotPresentException。CardNotPresentException(Throwable cause)
构造新的具有指定原因的(cause==null ?
和详细信息(cause==null ?
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
CardNotPresentException
public CardNotPresentException(String message)
构造一个新的具有指定详细消息的CardNotPresentException。- 参数
-
message
- 详细信息
-
CardNotPresentException
public CardNotPresentException(Throwable cause)
构造新的具有指定原因的(cause==null ? null : cause.toString())
和详细信息为(cause==null ? null : cause.toString())
。- 参数
-
cause
- 此异常的原因或为null
-
-