Radarr/src/NzbDrone.Common/Disk/DestinationAlreadyExistsExc...

28 lines
621 B
C#

using System;
using System.IO;
namespace NzbDrone.Common.Disk
{
public class DestinationAlreadyExistsException : IOException
{
public DestinationAlreadyExistsException()
{
}
public DestinationAlreadyExistsException(string message)
: base(message)
{
}
public DestinationAlreadyExistsException(string message, int hresult)
: base(message, hresult)
{
}
public DestinationAlreadyExistsException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}