csharp.libraries.generichost.ExceptionEventArgs.mustache Maven / Gradle / Ivy
using System;
namespace {{packageName}}.{{clientPackage}}
{
///
/// Useful for tracking server health
///
{{>visibility}} class ExceptionEventArgs : EventArgs
{
///
/// The ApiResponse
///
public Exception Exception { get; }
///
/// The ExcepetionEventArgs
///
///
public ExceptionEventArgs(Exception exception)
{
Exception = exception;
}
}
}