FileDocCategorySizeDatePackage
IsolateResourceError.javaAPI DocphoneME MR2 API (J2ME)2919Wed May 02 17:59:54 BST 2007com.sun.cldc.isolate

IsolateResourceError

public class IsolateResourceError extends Error
IsolateResourceError is thrown when the resource requirements required for an action cannot be fulfilled.

The conditions leading to this exception may be transient or permanent depending on the action and the resource involved. Refer to the specific documentation for the constructor or method in question.

Note that resource in the context of this exception is defined as something required for program operations, for which the lack thereof causes a failure.

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

  
public IsolateResourceError(String detail)
Constructs a IsolateResourceError with specified detail message.

param
detail Detailed information about the exception

  
public IsolateResourceError(Throwable cause)
Constructs a IsolateResourceError that wraps the specified throwable.

param
cause the cause (which is saved for later retrieval by the {@link #getCause getCause()} method). (A null value is permitted and indicates that the cause is nonexistent or unknown.)

    super((cause == null)?null:cause.toString());
  
public IsolateResourceError(String detail, Throwable cause)
Constructs a IsolateResourceError that wraps the specified throwable and provides the given detail message.

param
detail Detailed information about the exception
param
cause the cause (which is saved for later retrieval by the {@link #getCause getCause()} method). (A null value is permitted and indicates that the cause is nonexistent or unknown.)

  
Methods Summary