Click or drag to resize

ExceptionOptions Enumeration

Options used to specify additional characteristics about an exception. Use by exception classes implementing IEAPExtendedException, primarily used by EAPException.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[FlagsAttribute]
public enum ExceptionOptions
Members
  Member nameValueDescription
SuppressInner1 Specifies whether or not any inner exceptions should be suppressed when generating a non-developer user error message. See SuppressInner.
IsSensitive2 Specifies whether this exception, or any of its inner exceptions, may contain sensitive information that should be suppressed when when UnhandledErrorSuppressions is enabled. See IsSensitive.
DoNotLogToRequestLog4 Specifies that this exception does not need to be logged to xot_request_log. Note that it DOES NOT prevent the error from being logged as part of normal request logging. It DOES, however, prevent special logging of continuable errors that occur in the middle of a request. The primary example of this is a custom validation error raised during a WizardNext event. See DoNotLogToRequestLog.
See Also