namespace Apewer.Web { /// 执行 API 时发生的异常。 public interface IApiException { /// 异常状态。 string Status { get; } /// 错误消息。 string Message { get; } } }