(cherry picked from commit f05405fe1ce4c78a8c75e27920c863c5b83686bd) (cherry picked from commit 8ab040f612ee04dac4813a08cdeaddd446a64dc9)pull/1684/head
parent
d0fbb1f49a
commit
c02bfb5930
@ -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