mirror of
https://github.com/Readarr/Readarr
synced 2026-01-13 11:03:45 +01:00
14 lines
305 B
C#
14 lines
305 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;
|
|
}
|
|
}
|
|
}
|