FileDocCategorySizeDatePackage
ResourceAdapterInternalException.javaAPI DocGlassfish v2 API4045Fri May 04 22:35:36 BST 2007javax.resource.spi

ResourceAdapterInternalException

public class ResourceAdapterInternalException extends javax.resource.ResourceException
A ResourceAdapterInternalException indicates any system-level error conditions related to a resource adapter. The common conditions indicated by this exception type are:
  • Invalid configuration for creation of a new physical connection. An example is invalid server name for a target EIS instance.
  • Failure to create a physical connection to a EIS instance due to communication protocol error or any resource adapter implementation specific error.
  • Error conditions internal to resource adapter implementation.
version
1.0
author
Rahul Sharma
author
Ram Jeyaraman

Fields Summary
Constructors Summary
public ResourceAdapterInternalException()
Constructs a new instance with null as its detail message.

 super(); 
public ResourceAdapterInternalException(String message)
Constructs a new instance with the specified detail message.

param
message the detail message.

	super(message);
    
public ResourceAdapterInternalException(Throwable cause)
Constructs a new throwable with the specified cause.

param
cause a chained exception of type Throwable.

	super(cause);
    
public ResourceAdapterInternalException(String message, Throwable cause)
Constructs a new throwable with the specified detail message and cause.

param
message the detail message.
param
cause a chained exception of type Throwable.

	super(message, cause);
    
public ResourceAdapterInternalException(String message, String errorCode)
Constructs a new throwable with the specified detail message and an error code.

param
message a description of the exception.
param
errorCode a string specifying the vendor specific error code.

	super(message, errorCode);
    
Methods Summary