Binboo.Core.Events.ErrorEventArgs.ErrorEventArgs C# (CSharp) Method

ErrorEventArgs() public method

public ErrorEventArgs ( string msg, string details ) : System
msg string
details string
return System
        public ErrorEventArgs(string msg, string details)
        {
            _message = msg;
            _details = details;
        }
ErrorEventArgs