javax.resource
Class NotSupportedException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjavax.resource.ResourceException
              extended byjavax.resource.NotSupportedException
All Implemented Interfaces:
java.io.Serializable

public class NotSupportedException
extends ResourceException

NotSupportedException is thrown to indicate that callee (resource adapter or application server for system contracts) cannot execute an operation because the operation is not a supported feature. For example, if the transaction support level for a resource adapter is NO_TRANSACTION, an invocation of ManagedConnection.getXAResource method should throw NotSupportedException exception.

Version:
0.7
Author:
Rahul Sharma
See Also:
Serialized Form

Constructor Summary
NotSupportedException(java.lang.String reason)
          Create a NotSupportedException with reason.
NotSupportedException(java.lang.String reason, java.lang.String errorCode)
          Create a NotSupportedException.
 
Methods inherited from class javax.resource.ResourceException
getErrorCode, getLinkedException, setLinkedException
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NotSupportedException

public NotSupportedException(java.lang.String reason,
                             java.lang.String errorCode)
Create a NotSupportedException.

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

NotSupportedException

public NotSupportedException(java.lang.String reason)
Create a NotSupportedException with reason.

Parameters:
reason - a description of the exception