12 lines
321 B
12 lines
321 B
using Apewer.Web;
|
|
using System;
|
|
using System.Reflection;
|
|
|
|
namespace Apewer.AspNetBridge
|
|
{
|
|
|
|
/// <summary>输出异常。</summary>
|
|
/// <exception cref="ArgumentNullException"></exception>
|
|
public delegate void OnException(ApiRequest request, ApiResponse response, MethodInfo method, Exception exception);
|
|
|
|
}
|
|
|