Web.HTTPApp.IWebAppServices180.ExceptionHandler

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ExceptionHandler: TObject read GetExceptionHandler;

C++

__property System::TObject* ExceptionHandler = {read=GetExceptionHandler};

Properties

Type Visibility Source Unit Parent
property public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp IWebAppServices180

Description

Indicates the object that handles exceptions that arise when processing a request message.

ExceptionHandler is the object that the Web Broker application calls when an exception is raised while trying to process a request message. The request handler must implement the IWebExceptionHandler interface, which includes only a single method: HandleException.

See Also