mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
16 lines
342 B
C#
16 lines
342 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Common.Disk
|
|
{
|
|
public class NotParentException : NzbDroneException
|
|
{
|
|
public NotParentException(string message, params object[] args) : base(message, args)
|
|
{
|
|
}
|
|
|
|
public NotParentException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|