mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-03-05 13:20:20 -05:00
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;
|
|
}
|
|
}
|
|
}
|