ConfigFileMissingException.cs 265 B

1234567891011121314
  1. using System;
  2. namespace Microsoft.Samples.AppUpdater
  3. {
  4. [Serializable]
  5. public class ConfigFileMissingException : ApplicationException
  6. {
  7. public ConfigFileMissingException(string message, Exception innerException)
  8. : base(message, innerException)
  9. {
  10. }
  11. }
  12. }