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.

21 lines
638 B

  1. using System;
  2. using System.Diagnostics.CodeAnalysis;
  3. namespace IPA.Loader
  4. {
  5. [SuppressMessage("Design", "CA1064:Exceptions should be public", Justification = "This is only thrown and caught in local code")]
  6. internal sealed class DependencyResolutionLoopException : Exception
  7. {
  8. public DependencyResolutionLoopException(string message) : base(message)
  9. {
  10. }
  11. public DependencyResolutionLoopException(string message, Exception innerException) : base(message, innerException)
  12. {
  13. }
  14. public DependencyResolutionLoopException()
  15. {
  16. }
  17. }
  18. }