Show / Hide Table of Contents

    Class Error

    Inheritance
    System.Object
    Error
    ValidationError
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: Crosser.EdgeNode.Common.Abstractions.Utilities.Errors.Error
    Assembly: Crosser.EdgeNode.Common.Abstractions.dll
    Syntax
    public class Error : IError

    Constructors

    Error(ErrorCode, String)

    Declaration
    public Error(ErrorCode code, string message)
    Parameters
    ErrorCode code

    System.String message

    Error(String)

    Declaration
    public Error(string message)
    Parameters
    System.String message

    Properties

    CausedBy

    Declaration
    public List<IError> CausedBy { get; }
    Property Value
    System.Collections.Generic.List<IError>

    Implements
    IError.CausedBy

    Code

    Declaration
    public ErrorCode Code { get; }
    Property Value
    ErrorCode

    Implements
    IError.Code

    Message

    Declaration
    public string Message { get; }
    Property Value
    System.String

    Implements
    IError.Message

    Methods

    ToString()

    Declaration
    public override string ToString()
    Returns
    System.String

    Overrides
    System.Object.ToString()
    Back to top Crosser SDK