:: com :: sun :: star :: uno ::

exception Exception
Description
the base of all UNO exceptions

All exceptions defined in UNO idl should derive from this exception.

Developers Guide
3.3.7 Professional UNO - UNO Concepts - Exception Handling
3.4.1 Professional UNO - UNO Language Bindings - Java Language Binding - Type Mappings - Mapping of Exception Types
3.4.2 Professional UNO - UNO Language Bindings - C++ Language Binding - Exception Handling in C++
3.4.2 Professional UNO - UNO Language Bindings - C++ Language Binding - Exception Handling
3.4.3.5 Professional UNO - UNO Language Bindings - Automation Bridge - Type Mappings - Exceptions and Errorcodes

Elements' Summary
Message gives a detailed description of the reason, why the exception was thrown.  
Context should contain a reference to the original, which raised the exception.  
Elements' Details
Message
string Message;
Description
gives a detailed description of the reason, why the exception was thrown.

The description should be as detailed as possible.

Context
XInterface Context;
Description
should contain a reference to the original, which raised the exception.

May be NULL.

Top of Page