PageRenderTime 42ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/Source/Bifrost/Events/EventOutOfSequenceException.cs

#
C# | 11 lines | 7 code | 1 blank | 3 comment | 0 complexity | 00bd3c9751c9f87cdcea5c616548ef96 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. using System;
  2. namespace Bifrost.Events
  3. {
  4. /// <summary>
  5. /// The exception that is thrown when an <see cref="IEvent"/> is out of sequence in an <see cref="EventStream"/>
  6. /// </summary>
  7. public class EventOutOfSequenceException : ArgumentException
  8. {
  9. }
  10. }