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.

12 lines
321 B

4 years ago
  1. using Apewer.Web;
  2. using System;
  3. using System.Reflection;
  4. namespace Apewer.AspNetBridge
  5. {
  6. /// <summary>输出异常。</summary>
  7. /// <exception cref="ArgumentNullException"></exception>
  8. public delegate void OnException(ApiRequest request, ApiResponse response, MethodInfo method, Exception exception);
  9. }