Table of Contents

Interface IRecoverableError

Namespace
NRules.Diagnostics
Assembly
NRules.dll

Error event that can be handled by the consumer.

public interface IRecoverableError

Properties

Exception

Exception that caused the error.

Exception Exception { get; }

Property Value

Exception

IsHandled

Flag that indicates whether the exception was handled. If handler sets this to true then engine continues execution, otherwise exception is rethrown and terminates engine's execution.

bool IsHandled { get; set; }

Property Value

bool