FileDocCategorySizeDatePackage
RuntimeException.javaAPI DocJ2ME CLDC 1.11048Wed Feb 05 15:56:00 GMT 2003java.lang

RuntimeException

public class RuntimeException extends Exception
RuntimeException is the superclass of those exceptions that can be thrown during the normal operation of the Java Virtual Machine.

A method is not required to declare in its throws clause any subclasses of RuntimeException that might be thrown during the execution of the method but not caught.

author
Frank Yellin
version
12/17/01 (CLDC 1.1)
since
JDK1.0, CLDC 1.0

Fields Summary
Constructors Summary
public RuntimeException()
Constructs a RuntimeException with no detail message.

        super();
    
public RuntimeException(String s)
Constructs a RuntimeException with the specified detail message.

param
s the detail message.

        super(s);
    
Methods Summary