mirror of
https://github.com/Readarr/Readarr
synced 2026-02-07 23:33:16 +01:00
13 lines
313 B
C#
13 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)
|
|
{
|
|
}
|
|
}
|
|
}
|