mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
20 lines
483 B
C#
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; }
|
|
}
|
|
} |