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