javax.smartcardio
public class: CardException [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.smartcardio.CardException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CardNotPresentException
Exception for errors that occur during communication with the
Smart Card stack or the card itself.
- since:
1.6 -
- author:
Andreas - Sterbenz
- author:
JSR - 268 Expert Group
| Constructor: |
public CardException(String message) {
super(message);
}
Constructs a new CardException with the specified detail message. Parameters:
message - the detail message
|
public CardException(Throwable cause) {
super(cause);
}
Constructs a new CardException with the specified cause and a detail message
of (cause==null ? null : cause.toString()). Parameters:
cause - the cause of this exception or null
|
public CardException(String message,
Throwable cause) {
super(message, cause);
}
Constructs a new CardException with the specified detail message and cause. Parameters:
message - the detail message
cause - the cause of this exception or null
|
| Methods from java.lang.Throwable: |
|---|
|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |