ExceptionConfigStore.cs 404 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SKMC.Api.Common.Exceptions
  7. {
  8. public abstract class ExceptionConfigStore
  9. {
  10. /// <summary>
  11. /// 查询所有的异常配置
  12. /// </summary>
  13. /// <returns></returns>
  14. public abstract List<ExceptionConfig> QueryExceptions();
  15. }
  16. }