oracle.express
Class ExpressServerException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--oracle.express.ExpressServerException
- public final class ExpressServerException
- extends java.lang.RuntimeException
Indicates that the internal Oracle OLAP code cannot fulfill a request that was made by the OLAP API client code. The getErrorStack
method makes it possible to investigate the source of the error more exactly; however, such investigation is only relevant to Oracle staff who are debugging an internal problem. Typically, it is not meaningful to application developers.
- See Also:
ErrorDescription
, Serialized Form
Method Summary |
ErrorStack |
getErrorStack()
Gets the ErrorStack for this ExpressServerException . |
java.lang.String |
toString()
Gets a text representation of this ExpressServerException , which includes short descriptions of all the errors that occurred. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
getErrorStack
public final ErrorStack getErrorStack()
- Gets the
ErrorStack
for this ExpressServerException
. A given ExpressServerException
can have several ErrorDescription
objects, one for the original error and one for each error that was triggered subsequently. The ErrorStack
for an exception records all of the related errors. Use the getDescriptions
method on the ErrorStack
to obtain a List
of the ErrorDescription
objects.
-
- Returns:
- The
ErrorStack
for this ExpressServerException
.
toString
public final java.lang.String toString()
- Gets a text representation of this
ExpressServerException
, which includes short descriptions of all the errors that occurred.
-
- Overrides:
- toString in class java.lang.Throwable
-
- Returns:
- A
String
that contains a text representation of this ExpressServerException
, which includes short descriptions of all the errors that occurred.
Copyright © 2002, 2005, Oracle. All rights reserved.