using System; using System.Collections.Generic; using System.Text; namespace BBWY.Common.Models { /// /// 业务异常 /// public class BusinessException : Exception { public BusinessException(string message) : base(message) { } /// /// 错误代码 /// public int Code { get; set; } } }