ErrorInfo
Represents the information about an error, including whether the operation succeeded, the error code, and any associated messages or binding errors.
This interface is designed to provide a standardized way of handling and representing errors across different parts of an application. It includes methods to check if the operation was successful, retrieve the error code , and access any additional error details such as messages or binding errors.
Inheritors
Types
Properties
Provides a list of BindingError instances that occurred during the binding process. Each BindingError contains information about the error, including its name and a message describing the issue. This property returns an empty list if no binding errors are present.
Functions
Converts the current ErrorInfo instance into a Materialized if it is not already one. If the current instance is of type Materialized, it returns itself. Otherwise, it creates a new DefaultErrorInfo with the current error code, error message, and binding errors.