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.

16 lines
297 B

  1. namespace Apewer.Web
  2. {
  3. /// <summary>执行 API 时发生的异常。</summary>
  4. public interface IApiException
  5. {
  6. /// <summary>异常状态。</summary>
  7. string Status { get; }
  8. /// <summary>错误消息。</summary>
  9. string Message { get; }
  10. }
  11. }