Radarr/src/NzbDrone.Common/Expansive/CircularReferenceException.cs

13 lines
232 B
C#
Raw Normal View History

2013-04-16 00:07:58 +00:00
using System;
namespace NzbDrone.Common.Expansive
{
public class CircularReferenceException : Exception
{
public CircularReferenceException(string message)
: base(message)
{
}
}
2019-12-22 21:24:10 +00:00
}