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

CommException

public class CommException extends javax.resource.ResourceException
This indicates errors related to failed or interrupted communication with an EIS instance. Examples of common error conditions represented by this exception type are communication protocol error and invalidated connection due to server failure.
version
1.0
author
Rahul Sharma
author
Ram Jeyaraman

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

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

param
message the detail message.

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

param
cause a chained exception of type Throwable.

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