Nanook.QueenBee.ErrorEventArgs.ErrorEventArgs C# (CSharp) Method

ErrorEventArgs() public method

public ErrorEventArgs ( string title, Exception ex ) : System
title string
ex System.Exception
return System
        public ErrorEventArgs(string title, Exception ex)
        {
            Title = title;
            Message = string.Empty;
            Exception = ex;
        }

Same methods

ErrorEventArgs::ErrorEventArgs ( string title, string message ) : System
ErrorEventArgs