CK.Core.CriticalErrorCollector.Error.Error C# (CSharp) Method

Error() private method

private Error ( string c, Exception e, int n, int lostErrorCount ) : System
c string
e System.Exception
n int
lostErrorCount int
return System
            internal Error( string c, Exception e, int n, int lostErrorCount )
            {
                Comment = c;
                Exception = e;
                SequenceNumber = n;
                LostErrorCount = lostErrorCount;
            }
CriticalErrorCollector.Error