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.
29 lines
560 B
C#
29 lines
560 B
C#
10 months 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)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|