Exception event.
Inheritance: ISyncEvent
 public void ToStringIsImplemented() {
     var exception = new Mock<Exception>(string.Empty) { CallBase = true }.Object;
     var ev = new ExceptionEvent(exception);
     Assert.IsNotNull(ev.ToString());
 }
 public void ConstructorWithValidInput() {
     var exception = new Mock<Exception>().Object;
     var ev = new ExceptionEvent(exception);
     Assert.AreEqual(exception, ev.Exception);
 }