Acrolinx.Sdk.Sidebar.Exceptions.RangesNotFoundException.RangesNotFoundException C# (CSharp) Method

RangesNotFoundException() public method

public RangesNotFoundException ( string message, IReadOnlyList ranges, Exception inner ) : System
message string
ranges IReadOnlyList
inner System.Exception
return System
        public RangesNotFoundException(string message, IReadOnlyList<IRange> ranges, Exception inner)
            : base(string.Join(Environment.NewLine, message, string.Join(Environment.NewLine, ranges.Select(range=> range + " not found."), inner)))
        {
            Contract.Requires(message != null);
            Contract.Requires(ranges != null);
        }
RangesNotFoundException