23 lines
417 B

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