Skip navigation links

Oracle Secure Enterprise Search Java API Reference
11g Release 1 (11.1.2.0.0)

E14433-02


oracle.search.admin.api.ws.client
Class InvalidStateFault

java.lang.Object
  extended by oracle.search.admin.api.ws.client.InvalidStateFault


public class InvalidStateFault
extends Object

Contains the details of an InvalidStateFault_Exception, such as the error message and the error code. The details correspond to the soapenv:Fault in the SOAP message.

The following schema fragment specifies the expected SOAP XML for this class:

 <complexType name="InvalidStateFault">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="causeClassName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="causeMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="causeStackTrace" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
         <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
See Also:
InvalidStateFault_Exception

Constructor Summary
InvalidStateFault()
           

 

Method Summary
 String getCauseClassName()
          Returns the Java class name of the cause exception.
 String getCauseMessage()
          Returns the message of the cause exception.
 String getCauseStackTrace()
          Returns a String representation of the stack trace of the cause exception.
 int getErrorCode()
          Returns the error code.
 String getMessage()
          Returns the error message.

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Constructor Detail

InvalidStateFault

public InvalidStateFault()

Method Detail

getCauseClassName

public String getCauseClassName()
Returns the Java class name of the cause exception. Corresponds to the value of getName() in java.lang.Class.
Returns:
The Java class name of the cause exception, or null if there is no cause exception.

getCauseMessage

public String getCauseMessage()
Returns the message of the cause exception. Corresponds to the value of getMessage() in java.lang.Exception.
Returns:
The message of the cause exception, or null if there is no cause exception.

getCauseStackTrace

public String getCauseStackTrace()
Returns a String representation of the stack trace of the cause exception. Corresponds to the value of getStackTrace() in java.lang.Exception. The format of the stack trace is:
     className1:methodName1:lineNum1
     className2:methodName2:lineNum2
     ...
 
Returns:
The String representation of the stack trace, or null if there is no cause exception.

getErrorCode

public int getErrorCode()
Returns the error code.
Returns:
The error code.

getMessage

public String getMessage()
Returns the error message.
Returns:
The error message.

Skip navigation links

Oracle Secure Enterprise Search Java API Reference
11g Release 1 (11.1.2.0.0)

E14433-02


Copyright © 2006, 2010, Oracle and/or its affiliates. All rights reserved.