public void Warning(Exception except, params string[] additional)
		{
			Writer.AppendLine(except.FormatError(additional));
		}
Example #2
0
 public void Report(Exception ex)
 {
     MessageBox.Show(ex.FormatError());
 }