Skip navigation links

Java API Reference for Oracle Infrastructure Web Services
11
Release 1 (11.1.1)

E10654-02


oracle.webservices.provider
Class ProviderException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by oracle.webservices.provider.ProviderException

All Implemented Interfaces:
Serializable

public class ProviderException
extends RuntimeException

The oracle.webservices.provider.ProviderException is thrown from the core Provider APIs to indicate an exception related to the provider runtime mechanisms.

Version:
1.0
See Also:
Serialized Form

Constructor Summary
ProviderException()
          Constructs a new exception with null as its detail message.
ProviderException(String message)
          Constructs a new exception with the specified detail message.
ProviderException(String message, Throwable cause)
          Constructs a new exception with the specified detail message and cause.
ProviderException(Throwable cause)
          Constructs a new ProviderException with the specified cause and a detail message of (cause==null ?

 

Method Summary
 Throwable getLinkedCause()
          Gets the Linked cause

 

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

ProviderException

public ProviderException()
Constructs a new exception with null as its detail message. The cause is not initialized.

ProviderException

public ProviderException(String message)
Constructs a new exception with the specified detail message. The cause is not initialized.
Parameters:
message - The detail message which is later retrieved using the getMessage method

ProviderException

public ProviderException(String message,
                         Throwable cause)
Constructs a new exception with the specified detail message and cause.
Parameters:
message - The detail message which is later retrieved using the getMessage method
cause - The cause which is saved for the later retrieval throw by the getCause method

ProviderException

public ProviderException(Throwable cause)
Constructs a new ProviderException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
Parameters:
cause - The cause which is saved for the later retrieval throw by the getCause method. (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

Method Detail

getLinkedCause

public Throwable getLinkedCause()
Gets the Linked cause
Returns:
The cause of this Exception or null if the cause is noexistent or unknown

Skip navigation links

Copyright © 2006, 2009 Oracle. All Rights Reserved.