You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
766 B
30 lines
766 B
6 years ago
|
using System;
|
||
|
using System.IO;
|
||
|
using System.Runtime.Serialization;
|
||
|
|
||
|
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)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
protected DestinationAlreadyExistsException(SerializationInfo info, StreamingContext context) : base(info, context)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|