using System; using System.Collections.Generic; using System.Text; namespace Apewer.Web { /// 表示在 API 执行过程中发生的错误。 public sealed class ApiException : Exception { internal ApiException(string message) { } } }