|
SATSA - JSR177 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Throwable | |
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.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 Throwable in java.io |
Subclasses of Throwable in java.io | |
class |
java.io.IOException
|
Uses of Throwable in java.lang |
Subclasses of Throwable 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 |
Error
An Error is a subclass of Throwable
that indicates serious problems that a reasonable application
should not try to catch. |
class |
Exception
The class Exception and its subclasses are a form of
Throwable that indicates conditions that a reasonable
application might want to catch. |
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 |
OutOfMemoryError
Thrown when the Java Virtual Machine cannot allocate an object because it is out of memory, and no more memory could be made available by the garbage collector. |
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. |
class |
VirtualMachineError
Thrown to indicate that the Java Virtual Machine is broken or has run out of resources necessary for it to continue operating. |
Uses of Throwable in java.rmi |
Subclasses of Throwable 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. |
Fields in java.rmi declared as Throwable | |
Throwable |
RemoteException.detail
Nested exception to hold wrapped remote exception. |
Constructors in java.rmi with parameters of type Throwable | |
RemoteException(String s,
Throwable ex)
Constructs a RemoteException with the specified
detail message and nested exception. |
Uses of Throwable in java.security |
Subclasses of Throwable 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 Throwable in java.security.spec |
Subclasses of Throwable in java.security.spec | |
class |
InvalidKeySpecException
This is the exception for invalid key specifications. |
Uses of Throwable in javacard.framework |
Subclasses of Throwable 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 Throwable in javacard.framework.service |
Subclasses of Throwable in javacard.framework.service | |
class |
ServiceException
ServiceException represents a service framework
related exception. |
Uses of Throwable in javacard.security |
Subclasses of Throwable in javacard.security | |
class |
CryptoException
CryptoException represents a cryptography-related exception. |
Uses of Throwable in javax.crypto |
Subclasses of Throwable 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 Throwable in javax.microedition.io |
Subclasses of Throwable in javax.microedition.io | |
class |
ConnectionNotFoundException
This class is used to signal that a connection target cannot be found. |
Uses of Throwable in javax.microedition.pki |
Subclasses of Throwable in javax.microedition.pki | |
class |
UserCredentialManagerException
This class is used to identify error conditions in the management of the user certificate store. |
Uses of Throwable in javax.microedition.securityservice |
Subclasses of Throwable 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 |