AK.F1.Timing.UI.Utility.ExceptionEventArgs.ExceptionEventArgs C# (CSharp) Method

ExceptionEventArgs() public method

Initialises a new instance of the ExceptionEventArgs class and specifies the exception.
/// Thrown when is . ///
public ExceptionEventArgs ( Exception exception ) : System
exception System.Exception The .
return System
        public ExceptionEventArgs(Exception exception)
        {
            Guard.NotNull(exception, "exception");

            Exception = exception;
        }
ExceptionEventArgs