Java Smart Card I/O

javax.smartcardio
クラス CardNotPresentException

java.lang.Object
  上位を拡張 java.lang.Throwable
      上位を拡張 java.lang.Exception
          上位を拡張 javax.smartcardio.CardException
              上位を拡張 javax.smartcardio.CardNotPresentException
すべての実装されたインタフェース:
Serializable

public class CardNotPresentException
extends CardException

アプリケーションがカードを持たない端末と接続しようとしたときにスローされる例外です。

導入されたバージョン:
1.6
関連項目:
直列化された形式

コンストラクタの概要
CardNotPresentException(String message)
          指定された詳細メッセージを持つ新規 CardNotPresentException を構築します。
CardNotPresentException(String message, Throwable cause)
          指定された詳細メッセージおよび原因を使用して新規 CardNotPresentException を構築します。
CardNotPresentException(Throwable cause)
          (cause==null ? null : cause.toString()) の指定された原因および詳細メッセージを使用して新規 CardNotPresentException を構築します。
 
メソッドの概要
 
クラス java.lang.Throwable から継承されたメソッド
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

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

Java Smart Card I/O