:: com :: sun :: star :: form ::

interface XErrorListener
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::lang::XEventListener
    |
    +-XErrorListener
[ DEPRECATED ]
Description
used to be notified when errors in a database form happen.

Each time an exception is triggered by a database form, the error event is posted to the error listeners. This event may be used to configure the error handling of a database form.

Please do not use anymore, this interface is superseeded by ::com::sun::star::sdb::XSQLErrorListener .


Methods' Summary
errorOccured is invoked when a database action performed by a database form raises an exception.
Methods' Details
errorOccured
void
errorOccured(
 
[in] ErrorEvent
 
aEvent );

Description
is invoked when a database action performed by a database form raises an exception.
Top of Page