mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
13 lines
232 B
C#
13 lines
232 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.Expansive
|
|
{
|
|
public class CircularReferenceException : Exception
|
|
{
|
|
public CircularReferenceException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|