You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

93 lines
2.5 KiB

using System;
using System.Runtime.Serialization;
namespace Znyc.Cloudcar.Admin.AspNetCore.Common
{
/// <summary>
/// 自定义异常信息
/// </summary>
public class MyApiException : Exception
{
/// <summary>
/// 异常
/// </summary>
/// <param name="message"></param>
public MyApiException(string message)
{
Msg = message;
}
/// <summary>
/// </summary>
/// <param name="message"></param>
/// <param name="errcode"></param>
public MyApiException(string message, string errcode)
{
Msg = message;
ErrCode = errcode;
}
/// <summary>
/// </summary>
/// <param name="message"></param>
/// <param name="success"></param>
/// <param name="errcode"></param>
public MyApiException(string message, bool success, string errcode)
{
Msg = message;
Success = success;
ErrCode = errcode;
}
/// <summary>
/// </summary>
public MyApiException()
{
}
/// <summary>
/// </summary>
/// <param name="info"></param>
/// <param name="context"></param>
protected MyApiException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
/// <summary>
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public MyApiException(string message, Exception innerException) : base(message, innerException)
{
Msg = message;
throw innerException;
}
/// <summary>
/// </summary>
/// <param name="message"></param>
/// <param name="errcode"></param>
/// <param name="innerException"></param>
public MyApiException(string message, string errcode, Exception innerException) : base(message, innerException)
{
Msg = message;
ErrCode = errcode;
throw innerException;
}
/// <summary>
/// 异常消息
/// </summary>
public string Msg { get; set; }
/// <summary>
/// 成功状态
/// </summary>
public bool Success { get; set; }
/// <summary>
/// 提示代码
/// </summary>
public string ErrCode { get; set; }
}
}