You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/ToolProject/FastDBF/DbfDataTruncateException.cs

29 lines
560 B
C#

2 years ago
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.Serialization;
namespace SocialExplorer.IO.FastDBF
{
public class DbfDataTruncateException: Exception
{
public DbfDataTruncateException(string smessage): base(smessage)
{
}
public DbfDataTruncateException(string smessage, Exception innerException)
: base(smessage, innerException)
{
}
public DbfDataTruncateException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}