parent
78fcf86294
commit
2abeec06fc
@ -0,0 +1,29 @@
|
|||||||
|
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)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Runtime.Serialization;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.MediaFiles.TrackImport
|
||||||
|
{
|
||||||
|
public class RootFolderNotFoundException : DirectoryNotFoundException
|
||||||
|
{
|
||||||
|
public RootFolderNotFoundException()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public RootFolderNotFoundException(string message) : base(message)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public RootFolderNotFoundException(string message, Exception innerException) : base(message, innerException)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RootFolderNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue