Package java.lang
Class RuntimeException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- java.lang.RuntimeException
 
 
 
 
- 
- Direct Known Subclasses:
 ArithmeticException,ArrayStoreException,BufferOverflowException,BufferUnderflowException,CardRuntimeException,ClassCastException,IndexOutOfBoundsException,NegativeArraySizeException,NullPointerException,ReadOnlyBufferException,SecurityException
public class RuntimeException extends Exception
RuntimeExceptionis the superclass of those exceptions that can be thrown during the normal operation of the Java Card Virtual Machine.A method is not required to declare in its throws clause any subclasses of
RuntimeExceptionthat might be thrown during the execution of the method but not caught.This Java Card platform class's functionality is a strict subset of the definition in the JavaTM Platform Standard Edition (Java SETM) API Specification.
 
- 
- 
Constructor Summary
Constructors Constructor Description RuntimeException()Constructs aRuntimeExceptioninstance. 
 -