FileDocCategorySizeDatePackage
RuntimeException.javaAPI DocphoneME MR2 API (J2ME)1927Wed May 02 17:59:54 BST 2007java.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.

version
1.8, 12/04/99 (CLDC 1.0, Spring 2000)
since
JDK1.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