OpenBveApi.Packages.ProblemReport.ProblemReport C# (CSharp) Method

ProblemReport() public method

The progress report
public ProblemReport ( int progress, string file, Exception ex ) : System
progress int
file string
ex System.Exception
return System
		public ProblemReport(int progress, string file, Exception ex)
		{
			Progress = progress;
			CurrentFile = file;
			Exception = ex;
		}
	}
ProblemReport