//
//
//
using System.Net;
namespace ERP.Framework.Exceptions
{
///
/// Http异常类
///
public class HttpException : Exception
{
///
/// Http状态码
///
public HttpStatusCode HttpCode { get; set; }
///
/// 通用状态码
///
public int Code { get; set; }
///
/// 构造函数
///
///
///
public HttpException(int code, string message) : base(message)
{
Code = code;
}
}
}