|
SATSA - JSR177 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Exception | |
java.io | Provides classes for input and output through data streams. |
java.lang | Provides classes that are fundamental to the Java programming language. |
java.rmi | A subset of the java.rmi package in the
Java 2 Standard Edition. |
java.security | Provides the classes and interfaces for the security framework. |
java.security.spec | Provides classes and interfaces for key specifications and algorithm parameter specifications. |
javacard.framework | Provides Java Card API exceptions that may be thrown by a remote method. |
javacard.framework.service | Provides a Java Card API exception that may be thrown by a remote method. |
javacard.security | Provides a Java Card API exception that may be thrown by a remote method. |
javax.crypto | Provides the classes and interfaces for cryptographic operations. |
javax.microedition.io | Classes for the Generic Connection framework. |
javax.microedition.jcrmi | Provides classes and interfaces for Java Card RMI connection. |
javax.microedition.pki | This package defines classes to support basic user certificate management. |
javax.microedition.securityservice | This package defines classes to generate application-level digital signatures that conform to the Cryptographic Message Syntax (CMS) format. |
Uses of Exception in java.io |
Subclasses of Exception in java.io | |
class |
java.io.IOException
|
Uses of Exception in java.lang |
Subclasses of Exception in java.lang | |
class |
ArithmeticException
Thrown when an exceptional arithmetic condition has occurred. |
class |
ArrayIndexOutOfBoundsException
Thrown to indicate that an array has been accessed with an illegal index. |
class |
ArrayStoreException
Thrown to indicate that an attempt has been made to store the wrong type of object into an array of objects. |
class |
ClassCastException
Thrown to indicate that the code has attempted to cast an object to a subclass of which it is not an instance. |
class |
ClassNotFoundException
Thrown when an application tries to load in a class through its string name using the forName method in class Class
but no definition for the class with the specified name could be found. |
class |
IllegalAccessException
Thrown when an application tries to load in a class, but the currently executing method does not have access to the definition of the specified class, because the class is not public and in another package. |
class |
IllegalArgumentException
Thrown to indicate that a method has been passed an illegal or inappropriate argument. |
class |
IllegalMonitorStateException
Thrown to indicate that a thread has attempted to wait on an object's monitor or to notify other threads waiting on an object's monitor without owning the specified monitor. |
class |
IllegalStateException
Signals that a method has been invoked at an illegal or inappropriate time. |
class |
IllegalThreadStateException
Thrown to indicate that a thread is not in an appropriate state for the requested operation. |
class |
IndexOutOfBoundsException
Thrown to indicate that an index of some sort (such as to an array, to a string, or to a vector) is out of range. |
class |
InstantiationException
Thrown when an application tries to create an instance of a class using the newInstance method in class
Class , but the specified class object cannot be
instantiated because it is an interface or is an abstract class. |
class |
InterruptedException
Thrown when a thread is waiting, sleeping, or otherwise paused for a long time and another thread interrupts it using the interrupt method in class Thread . |
class |
NegativeArraySizeException
Thrown if an application tries to create an array with negative size. |
class |
NullPointerException
Thrown when an application attempts to use null in a
case where an object is required. |
class |
NumberFormatException
Thrown to indicate that the application has attempted to convert a string to one of the numeric types, but that the string does not have the appropriate format. |
class |
RuntimeException
RuntimeException is the superclass of those
exceptions that can be thrown during the normal operation of the
Java Virtual Machine. |
class |
SecurityException
Thrown by the security manager to indicate a security violation. |
class |
StringIndexOutOfBoundsException
Thrown by the charAt method in class
String and by other String
methods to indicate that an index is either negative or greater
than or equal to the size of the string. |
class |
UnsupportedOperationException
Thrown to indicate that the requested operation is not supported. |
Uses of Exception in java.rmi |
Subclasses of Exception in java.rmi | |
class |
RemoteException
A RemoteException is the common superclass for a number of
communication-related exceptions that may occur during the execution of a
remote method call. |
Uses of Exception in java.security |
Subclasses of Exception in java.security | |
class |
DigestException
This is the generic Message Digest exception. |
class |
GeneralSecurityException
The GeneralSecurityException class is a generic
security exception class that provides type safety for all the
security-related exception classes that extend from it. |
class |
InvalidAlgorithmParameterException
This is the exception for invalid or inappropriate algorithm parameters. |
class |
InvalidKeyException
This is the exception for invalid Keys (invalid encoding, wrong length, uninitialized, etc). |
class |
KeyException
This is the basic key exception. |
class |
NoSuchAlgorithmException
This exception is thrown when a particular cryptographic algorithm is requested but is not available in the environment. |
class |
SignatureException
This is the generic Signature exception. |
Uses of Exception in java.security.spec |
Subclasses of Exception in java.security.spec | |
class |
InvalidKeySpecException
This is the exception for invalid key specifications. |
Uses of Exception in javacard.framework |
Subclasses of Exception in javacard.framework | |
class |
APDUException
APDUException represents an APDU -related exception. |
class |
CardException
The CardException class
defines a field reason and two accessor methods
getReason() and setReason() . |
class |
CardRuntimeException
The CardRuntimeException class
defines a field reason and two accessor methods
getReason() and setReason() . |
class |
ISOException
ISOException class encapsulates an ISO 7816-4 response
status word as
its reason code. |
class |
PINException
PINException represents a OwnerPIN class
access-related exception. |
class |
SystemException
SystemException represents a JCSystem
class-related exception. |
class |
TransactionException
TransactionException represents an exception in the
transaction subsystem. |
class |
UserException
UserException represents a user exception. |
Uses of Exception in javacard.framework.service |
Subclasses of Exception in javacard.framework.service | |
class |
ServiceException
ServiceException represents a service framework
related exception. |
Uses of Exception in javacard.security |
Subclasses of Exception in javacard.security | |
class |
CryptoException
CryptoException represents a cryptography-related exception. |
Uses of Exception in javax.crypto |
Subclasses of Exception in javax.crypto | |
class |
BadPaddingException
This exception is thrown when a particular padding mechanism is expected for the input data but the data is not padded properly. |
class |
IllegalBlockSizeException
This exception is thrown when the length of data provided to a block cipher is incorrect, i.e., does not match the block size of the cipher. |
class |
NoSuchPaddingException
This exception is thrown when a particular padding mechanism is requested but is not available in the environment. |
class |
ShortBufferException
This exception is thrown when an output buffer provided by the user is too short to hold the operation result. |
Uses of Exception in javax.microedition.io |
Subclasses of Exception in javax.microedition.io | |
class |
ConnectionNotFoundException
This class is used to signal that a connection target cannot be found. |
Uses of Exception in javax.microedition.jcrmi |
Methods in javax.microedition.jcrmi that throw Exception | |
Object |
RemoteRef.invoke(String method,
Object[] params)
Invokes a remote method. |
Uses of Exception in javax.microedition.pki |
Subclasses of Exception in javax.microedition.pki | |
class |
UserCredentialManagerException
This class is used to identify error conditions in the management of the user certificate store. |
Uses of Exception in javax.microedition.securityservice |
Subclasses of Exception in javax.microedition.securityservice | |
class |
CMSMessageSignatureServiceException
This class is used to identify error conditions detected while signing messages. |
|
SATSA - JSR177 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |