|
Oracle Secure Enterprise Search Java API Reference 11g Release 2 (11.2.2.0.0) E23429-01 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.search.admin.api.ws.client.CreatableAdminObjectFault_Exception
public class CreatableAdminObjectFault_Exception
An exception for errors that only apply to creatable objects. For example, if an attempt is made to delete a creatable object that does not exist, then a CreatableAdminObjectFault_Exception is raised. This error does not apply to universal objects.
Detailed information on the error is accessed through the associated Fault:
...
catch (CreatableAdminObjectFault_Exception e)
{
CreatableAdminObjectFault faultInfo = e.getFaultInfo();
int errorCode = faultInfo.getErrorCode();
String message = faultInfo.getMessage();
System.out.println( "Caught creatable object error: " + errorCode + " - " + message );
}
CreatableAdminObjectFault, Serialized Form| Method Summary | |
|---|---|
CreatableAdminObjectFault |
getFaultInfo()Returns the associated Fault. |
| 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 |
| Method Detail |
|---|
public CreatableAdminObjectFault getFaultInfo()
soapenv:Fault element in the SOAP message.
|
Oracle Secure Enterprise Search Java API Reference 11g Release 2 (11.2.2.0.0) E23429-01 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||