mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
df0a5f004d
Closes #1762
16 lines
320 B
C#
16 lines
320 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.Disk
|
|
{
|
|
public class FileAlreadyExistsException : Exception
|
|
{
|
|
public string Filename { get; set; }
|
|
|
|
public FileAlreadyExistsException(string message, string filename)
|
|
: base(message)
|
|
{
|
|
Filename = filename;
|
|
}
|
|
}
|
|
}
|