13 lines
281 B
C#
Raw Normal View History

2025-01-13 21:06:59 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace YD_XinWei.Commons.Exceptions
{
public class CommonException
{
public string ErrorNo; // 错误编号 0001 0002 0033 0004
public string ErrorInfo;// 规范错误信息
}
}