javax.resource.cci
Class ResourceWarning

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by javax.resource.ResourceException
              extended by javax.resource.cci.ResourceWarning
All Implemented Interfaces:
Serializable

public class ResourceWarning
extends 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.

Author:
Guillaume Sauthier
See Also:
Serialized Form

Constructor Summary
ResourceWarning()
          Constructs a new instance with null as its detail message.
ResourceWarning(String message)
          Constructs a new instance with the specified detail message.
ResourceWarning(String message, String errorCode)
          Constructs a new throwable with the specified detail message and an error code.
ResourceWarning(String message, Throwable cause)
          Constructs a new throwable with the specified detail message and cause.
ResourceWarning(Throwable cause)
          Constructs a new throwable with the specified cause.
 
Method Summary
 ResourceWarning getLinkedWarning()
          Deprecated.  
 void setLinkedWarning(ResourceWarning warning)
          Deprecated.  
 
Methods inherited from class javax.resource.ResourceException
getErrorCode, getLinkedException, getMessage, setErrorCode, setLinkedException
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ResourceWarning

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


ResourceWarning

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

Parameters:
message - a description of the exception.
errorCode - a string specifying the vendor specific error code.

ResourceWarning

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

Parameters:
message - the detail message.
cause - a chained exception of type Throwable.

ResourceWarning

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

Parameters:
message - the detail message.

ResourceWarning

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

Parameters:
cause - a chained exception of type Throwable.
Method Detail

getLinkedWarning

public ResourceWarning getLinkedWarning()
Deprecated. 

Throw an IllegalStateException.


setLinkedWarning

public void setLinkedWarning(ResourceWarning warning)
Deprecated. 

Throw an IllegalStateException.



Copyright © 2007-2012 OW2 Consortium. All Rights Reserved.