/Source/Bifrost/Sagas/ChapterAlreadyExistException.cs

# · C# · 12 lines · 7 code · 2 blank · 3 comment · 0 complexity · 304e3098416d3c4794c207350abf7b69 MD5 · raw file

  1. using System;
  2. namespace Bifrost.Sagas
  3. {
  4. /// <summary>
  5. /// The exception that is thrown if a <see cref="IChapter"/> already exists within a <see cref="ISaga"/>
  6. /// </summary>
  7. public class ChapterAlreadyExistException : Exception
  8. {
  9. }
  10. }