17 lines
478 B
C#
17 lines
478 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MontoyaTech.Rest.Net.Events
|
|
{
|
|
/// <summary>
|
|
/// A delegate that can be used to handle route exceptions.
|
|
/// </summary>
|
|
/// <param name="route"></param>
|
|
/// <param name="context"></param>
|
|
/// <param name="ex"></param>
|
|
public delegate void RouteExceptionEventHandler(Route route, ListenerContext context, Exception ex);
|
|
}
|