AK.F1.Timing.UI.Utility.ExceptionEventArgs.ExceptionEventArgs C# (CSharp) 메소드

ExceptionEventArgs() 공개 메소드

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

            Exception = exception;
        }
ExceptionEventArgs