/Rhino.Etl.Tests/Errors/ErrorsProcess.cs

http://github.com/ayende/rhino-etl · C# · 14 lines · 12 code · 2 blank · 0 comment · 0 complexity · e1a0e16795bd3c358b4e186f9c43fc94 MD5 · raw file

  1. namespace Rhino.Etl.Tests.Errors
  2. {
  3. using Core;
  4. public class ErrorsProcess : EtlProcess
  5. {
  6. public readonly ThrowingOperation ThrowOperation = new ThrowingOperation();
  7. protected override void Initialize()
  8. {
  9. Register(ThrowOperation);
  10. }
  11. }
  12. }