WebSphere Commerce EnterpriseWebSphere Commerce Professional

errorHandler

The purpose of this extension point is to allow plug-ins to implement the IBM Sales Center error handler.

Identifier:

com.ibm.commerce.telesales.core.errorHandler

Description:

The purpose of this extension point is to allow plug-ins to implement the IBM Sales Center error handler.

Configuration Markup:

<!ELEMENT extension ( errorHandler*)>

<!ATTLIST extension

point CDATA #REQUIRED

id CDATA #IMPLIED

name CDATA #IMPLIED>

  • point - A fully qualified identifier of the target extension point.
  • id - An optional identifier for the target extension point.
  • name - An optional name for the extension instance.

<!ELEMENT errorHandler EMPTY>

<!ATTLIST errorHandler

id CDATA #REQUIRED

class CDATA #REQUIRED

  • id - A unique identifier for this errorHandler.
  • class - The target class must implement the interface com.ibm.commerce.telesales.core.IErrorHandler.

Examples:

The following is an example for the roles extension point:


<extension
       point="com.ibm.commerce.telesales.core.errorHandler">
      <errorHandler
         id="com.ibm.commerce.telesales.standardErrorHandler"
         class="com.ibm.commerce.telesales.ui.impl.handlers.StandardErrorHandler">
      </errorHandler>
</extension>

Supplied Implementation:

The workbench uses the handlers when a IBM Sales Center error handlers implementation is requested.