PageRenderTime 49ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/Source/Bifrost/Sagas/ChapterAlreadyExistException.cs

#
C# | 12 lines | 7 code | 2 blank | 3 comment | 0 complexity | 304e3098416d3c4794c207350abf7b69 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  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. }