BBjAppConfig::getErrAction

Description

In BBj 14.0 and higher, this method returns the action that occurs on abnormal application termination.

Syntax

Return Value

Method

BBjBuiCloseAction

getErrAction()

Parameters

None.

Return Values

Returns a BBjBuiCloseAction object that defines the abnormal application termination action.

Remarks

None.

Example

rem ' BBjAppConfig::getErrAction

bui! = bbjapi().getBuiManager()
admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
appConfig! = appServer!.makeEmptyAppConfig()
print "getErrAction: ",appConfig!.getErrAction()
print "setErrAction()"
appConfig!.setErrAction(bui!.appAction("oops"))
print "getErrAction: ",appConfig!.getErrAction()
print "clearErrAction()"
appConfig!.clearErrAction()
print "getErrAction: ",appConfig!.getErrAction()

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::clearErrAction

BBjAppConfig::setErrAction

BBjAppServer

BBjAppServer::getErrAction

BBjAppServer::setErrAction

BBjBuiCloseAction

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.