Radarr/src/NzbDrone.Core/MediaFiles/SameFilenameException.cs

16 lines
317 B
C#
Raw Normal View History

2013-08-13 02:01:15 +00:00
using System;
namespace NzbDrone.Core.MediaFiles
{
public class SameFilenameException : Exception
{
public string Filename { get; set; }
2013-08-13 02:01:15 +00:00
2019-12-22 22:08:53 +00:00
public SameFilenameException(string message, string filename)
: base(message)
2013-08-13 02:01:15 +00:00
{
Filename = filename;
}
}
}