Thrown when the request Windows SDK can not be found
Inheritance: System.ApplicationException
        public void ShouldSetMessage()
        {
            var subject = new SdkNotFoundException("TESTING");

            Assert.That(subject.Message, Contains.Substring("TESTING"));
        }
 public void ShouldSetMessage()
 {
     var subject = new SdkNotFoundException("TESTING");
     Assert.That(subject.Message, Contains.Substring("TESTING"));
 }