mirror of
https://github.com/Radarr/Radarr
synced 2026-04-29 00:11:45 +02:00
27 lines
621 B
C#
27 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)
|
|
{
|
|
}
|
|
}
|
|
}
|