ServiceNotExistException.cs 490 B

1234567891011121314151617181920212223242526
  1. using System;
  2. namespace SvdCli.ServiceUtils
  3. {
  4. #region 异常定义
  5. /// <summary>
  6. /// 服务不存在异常
  7. /// </summary>
  8. public class ServiceNotExistException : ApplicationException
  9. {
  10. public ServiceNotExistException() : base("服务不存在!")
  11. {
  12. }
  13. public ServiceNotExistException(string message) : base(message)
  14. {
  15. }
  16. }
  17. #endregion 异常定义
  18. #region 枚举定义
  19. #endregion 枚举定义
  20. }