mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-21 22:05:43 -04:00
14 lines
313 B
C#
14 lines
313 B
C#
namespace NzbDrone.Common.Exceptions
|
|
{
|
|
public class NotParentException : NzbDroneException
|
|
{
|
|
public NotParentException(string message, params object[] args) : base(message, args)
|
|
{
|
|
}
|
|
|
|
public NotParentException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|