public ApiErrorException()

in src/Unosquare.PassCore.Common/ApiErrorException.cs [16:25]


        public ApiErrorException(string message, ApiErrorCode errorCode = ApiErrorCode.Generic)
        : base(message) => ErrorCode = errorCode;

        /// <summary>
        /// Gets or sets the error code.
        /// </summary>
        /// <value>
        /// The error code.
        /// </value>
        public ApiErrorCode ErrorCode { get; }