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