1234567891011121314 |
- using System;
- namespace Microsoft.Samples.AppUpdater
- {
- [Serializable]
- public class ConfigFileMissingException : ApplicationException
- {
- public ConfigFileMissingException(string message, Exception innerException)
- : base(message, innerException)
- {
- }
- }
- }
|