mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
23 lines
492 B
C#
23 lines
492 B
C#
using System;
|
|
using System.IO;
|
|
|
|
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)
|
|
{
|
|
}
|
|
}
|
|
}
|