ImportIOException
The exception thrown when a non-fatal IO error occurs importing a document.
using Relativity.DataExchange.Data;
using System;
using System.Runtime.Serialization;
namespace kCura.WinEDDS.Exceptions
{
[Serializable]
public class ImportIOException : ImporterException
{
public ImportIOException()
{
}
public ImportIOException(string message)
: base(message)
{
}
public ImportIOException(string message, Exception innerException)
: base(message, innerException)
{
}
protected ImportIOException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}