123456789101112131415161718 |
- using System;
- using System.Globalization;
- using WingInterfaceLibrary.Enum;
- using JsonRpcLite.Services;
- namespace WingDeviceService.Common
- {
- /// <summary>
- /// 设备不存在
- /// </summary>
- public class NoExistDeviceException : RpcException
- {
- public NoExistDeviceException() : base((int)CustomerRpcCode.NoExistDevice, "Device does not exist", null)
- {
-
- }
- }
- }
|