public void OnErrorDoesNotThrowNotImplementedException(
     Boiler sut,
     Exception e)
 {
     try
     {
         sut.OnError(e);
     }
     catch (NotImplementedException)
     {
         Assert.True(false, "NotImplementedException thrown.");
     }
 }