No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LibLogException.cs 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // <auto-generated/>
  2. // ReSharper disable CheckNamespace
  3. namespace RSTP_DSLink.Logging.LogProviders
  4. {
  5. using System;
  6. #if LIBLOG_EXCLUDE_CODE_COVERAGE
  7. using System.Diagnostics.CodeAnalysis;
  8. #endif
  9. #if LIBLOG_EXCLUDE_CODE_COVERAGE
  10. [ExcludeFromCodeCoverage]
  11. #endif
  12. #if !LIBLOG_PROVIDERS_ONLY || LIBLOG_PUBLIC
  13. /// <summary>
  14. /// Exception thrown by LibLog.
  15. /// </summary>
  16. public
  17. #else
  18. internal
  19. #endif
  20. class LibLogException : Exception
  21. {
  22. /// <summary>
  23. /// Initializes a new LibLogException with the specified message.
  24. /// </summary>
  25. /// <param name="message">The message</param>
  26. public LibLogException(string message)
  27. : base(message)
  28. {
  29. }
  30. /// <summary>
  31. /// Initializes a new LibLogException with the specified message and inner exception.
  32. /// </summary>
  33. /// <param name="message">The message.</param>
  34. /// <param name="inner">The inner exception.</param>
  35. public LibLogException(string message, Exception inner)
  36. : base(message, inner)
  37. {
  38. }
  39. }
  40. }