Client and backend. This class is shared: the same code is compiled into your app and into your server, so everything on this page works in both.
public abstract class VirtualMachineError
Known subtypesOutOfMemoryError
Thrown to indicate that the Java Virtual Machine is broken or has run out of resources necessary for it to continue operating.
Since: JDK1.0, CLDC 1.0
Constructors
public VirtualMachineError() | Constructs a VirtualMachineError with no detail message. |
public VirtualMachineError(String s) | Constructs a VirtualMachineError with the specified detail message. |
Inherited methods
Constructor details
VirtualMachineError
public VirtualMachineError()Constructs a VirtualMachineError with no detail message.
VirtualMachineError
public VirtualMachineError(String s)Constructs a VirtualMachineError with the specified detail message.
s - the detail message.