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

using System;
using System.Diagnostics.CodeAnalysis;
namespace IPA.Loader
{
[SuppressMessage("Design", "CA1064:Exceptions should be public", Justification = "This is only thrown and caught in local code")]
internal sealed class DependencyResolutionLoopException : Exception
{
public DependencyResolutionLoopException(string message) : base(message)
{
}
public DependencyResolutionLoopException(string message, Exception innerException) : base(message, innerException)
{
}
public DependencyResolutionLoopException()
{
}
}
}