Relativity.DataExchange.Media.ImageConversionException
The exception thrown when a serious failure occurs during image rollup.
namespace Relativity.DataExchange.Media
{
public class ImageConversionException : Exception
{
public string File { get; set; }
public int PageCount { get; set; }
public int PageNumber { get; set; }
public ImageConversionException();
public ImageConversionException(string message);
public ImageConversionException(string message, Exception innerException);
public ImageConversionException(string file, int pageNumber, int pageCount, Exception innerException);
protected ImageConversionException(SerializationInfo info, StreamingContext context);
}
}