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

ApplicationServerInternalException

public class ApplicationServerInternalException extends javax.resource.ResourceException
An ApplicationServerInternalException is thrown by an application server to indicate error conditions specific to an application server. These error conditions can be related to either configuration related errors or implementation of mechanisms internal to an application server (example: connection pooling, thread management).
version
1.0
author
Rahul Sharma
author
Ram Jeyaraman

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

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

param
message the detail message.

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

param
cause a chained exception of type Throwable.

	super(cause);
    
public ApplicationServerInternalException(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 ApplicationServerInternalException(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