Fixes #7460 (cherry picked from commit 8ab040f612ee04dac4813a08cdeaddd446a64dc9)pull/7691/head
parent
7c6858ecfb
commit
b1f0b2c216
@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue