using System; namespace MbUnit.ReSharperRunner.MbUnit { public class RunnerExceptionEventArgs : EventArgs { private readonly Exception exception; public RunnerExceptionEventArgs(Exception exception) { this.exception = exception; } public Exception Exception { get { return exception; } } } }