mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
16 lines
317 B
C#
16 lines
317 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.MediaFiles
|
|
{
|
|
public class SameFilenameException : Exception
|
|
{
|
|
public string Filename { get; set; }
|
|
|
|
public SameFilenameException(string message, string filename)
|
|
: base(message)
|
|
{
|
|
Filename = filename;
|
|
}
|
|
}
|
|
}
|