Files
lidarr/src/NzbDrone.Common/Disk/DestinationAlreadyExistsException.cs
T
Bogdan 96328b8d95 New: Bump to .NET 8
(cherry picked from commit d6cee5094cdd3ad8342eda56632f5a66316e390c)
2025-10-14 21:51:14 -05:00

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)
{
}
}
}