FileDocCategorySizeDatePackage
ResourceWarning.javaAPI DocGlassfish v2 API4808Fri May 04 22:35:34 BST 2007javax.resource.cci

ResourceWarning

public class ResourceWarning extends javax.resource.ResourceException
A ResourceWarning provides information on warnings related to execution of an interaction with an EIS. Warnings are silently chained to the object whose method caused it to be reported.
see
Interaction#getWarnings

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

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

param
message the detail message.

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

param
cause a chained exception of type Throwable.

	super(cause);
    
public ResourceWarning(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 ResourceWarning(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
public javax.resource.cci.ResourceWarninggetLinkedWarning()
Retrieves the warning chained to this ResourceWarning object.

return
next ResourceWarning in the chain; null if none.
deprecated
J2SE release 1.4 supports a chained exception facility that allows any throwable to know about another throwable, if any, that caused it to get thrown. Refer to getCause and initCause methods of the java.lang.Throwable class.

	try {
	    return ((ResourceWarning)getLinkedException());
	} 
	catch (ClassCastException ex) {
	    return null;
	}
    
public voidsetLinkedWarning(javax.resource.cci.ResourceWarning warning)
Adds an ResourceWarning object to the end of the chain.

param
warning ResourceWarning to be added to the chain.
deprecated
J2SE release 1.4 supports a chained exception facility that allows any throwable to know about another throwable, if any, that caused it to get thrown. Refer to getCause and initCause methods of the java.lang.Throwable class.

	setLinkedException(warning);