FluentBuild.Utilities.SdkNotFoundException.SdkNotFoundException C# (CSharp) Method

SdkNotFoundException() public method

Creates a new exception and populates the message.
public SdkNotFoundException ( string pathsSearched ) : System
pathsSearched string Paths searched to find the SDK
return System
        public SdkNotFoundException(string pathsSearched)
        {
            var sb = new StringBuilder();
            sb.Append("Could not find the SDK by searching paths ");
            sb.Append(pathsSearched);
            sb.Append(". Please make sure it is installed.");
            _message = sb.ToString();
        }
SdkNotFoundException