| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.IO;
- namespace HXX.Scanner.Biz.Socket
- {
- /// <summary>
- /// 返回其他错误信息
- /// </summary>
- public class response_error : response_base
- {
- public response_error(string msg)
- {
- this.action = "error";
- this.code = 500;
- this.msg = msg;
- }
- }
- }
|