BooleanImporterException
Represents an exception that occured while attempting to import a boolean. This class cannot be inherited.
using Relativity.DataExchange.Resources;
using System;
using System.Runtime.Serialization;
namespace Relativity.DataExchange.Data
{
[Serializable]
public sealed class BooleanImporterException : ImporterException
{
public BooleanImporterException()
{
}
public BooleanImporterException(string message)
: base(message)
{
}
public BooleanImporterException(string message, Exception innerException)
: base(message, innerException)
{
}
public BooleanImporterException(long row, int column, Exception innerException)
: base(row, column, Strings.BooleanImporterErrorAdditionalInfo, innerException)
{
}
private BooleanImporterException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}