Skip navigation links

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

E10654-02


oracle.webservices.management
Class ConfigException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by oracle.webservices.management.ConfigException

All Implemented Interfaces:
Serializable

public class ConfigException
extends Exception

Thrown to indicate a configuration error.

See Also:
Serialized Form

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

 

Method Summary

 

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

ConfigException

public ConfigException(Throwable cause)
Constructs a new ConfigException 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 underlying cause or null.

ConfigException

public ConfigException(String message)
Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
Parameters:
message - The detail message.

ConfigException

public ConfigException(String message,
                       Throwable cause)
Constructs a new exception with the specified detail message and cause. Note that the detail message associated with cause is not automatically incorporated in this exception's detail message.
Parameters:
message - The detail message.
cause - The underlying cause or null.

Skip navigation links

Copyright © 2006, 2009 Oracle. All Rights Reserved.