1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.Core/Services/WebServer/EndPoints/EndpointExceptionEventArgs.cs
Robert a9d6b17aa4 Plugin endpoints - Added exception event
Plugin endpoints - Handle wildcard values for Accept-Charset
2021-02-25 19:42:13 +01:00

20 lines
483 B
C#

using System;
namespace Artemis.Core.Services
{
/// <summary>
/// Provides data about endpoint exception related events
/// </summary>
public class EndpointExceptionEventArgs : EventArgs
{
internal EndpointExceptionEventArgs(Exception exception)
{
Exception = exception;
}
/// <summary>
/// Gets the exception that occurred
/// </summary>
public Exception Exception { get; }
}
}