1234567891011121314151617181920212223242526 |
- using System;
- namespace SvdCli.ServiceUtils
- {
- #region 异常定义
- /// <summary>
- /// 服务不存在异常
- /// </summary>
- public class ServiceNotExistException : ApplicationException
- {
- public ServiceNotExistException() : base("服务不存在!")
- {
- }
- public ServiceNotExistException(string message) : base(message)
- {
- }
- }
- #endregion 异常定义
- #region 枚举定义
- #endregion 枚举定义
- }
|