All Downloads are FREE. Search and download functionalities are using the official Maven repository.

csharp.libraries.generichost.ExceptionEventArgs.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
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;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy