/src/LinFu.AOP.Interfaces/BootstrapException.cs

http://github.com/philiplaureano/LinFu · C# · 20 lines · 11 code · 1 blank · 8 comment · 0 complexity · c492ca57a463c423ffbd9da83a43eb52 MD5 · raw file

  1. using System;
  2. namespace LinFu.AOP.Interfaces
  3. {
  4. /// <summary>
  5. /// Represents an exception thrown when LinFu.AOP is unable to bootstrap itself.
  6. /// </summary>
  7. [Serializable]
  8. public class BootstrapException : Exception
  9. {
  10. /// <summary>
  11. /// Initializes a new instance of the <see cref="BootstrapException" /> class.
  12. /// </summary>
  13. /// <param name="message">The exception message.</param>
  14. /// <param name="ex">The exception itself.</param>
  15. public BootstrapException(string message, Exception ex) : base(message, ex)
  16. {
  17. }
  18. }
  19. }