mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
86b8dd4856
Fixes #4066 Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
29 lines
682 B
C#
29 lines
682 B
C#
using System;
|
|
using System.IO;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.MovieImport
|
|
{
|
|
public class RootFolderNotFoundException : DirectoryNotFoundException
|
|
{
|
|
public RootFolderNotFoundException()
|
|
{
|
|
}
|
|
|
|
public RootFolderNotFoundException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public RootFolderNotFoundException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
|
|
protected RootFolderNotFoundException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
}
|
|
}
|