ip2region_private/maker/csharp/src/IP2RegionDotNetDbMaker/DbMakerConfigException.cs

18 lines
302 B
C#

using System;
namespace IP2RegionDotNetDbMaker
{
/**
* configuration exception
*
* @author chenxin<chenxin619315@gmail.com>
*/
public class DbMakerConfigException : Exception
{
public DbMakerConfigException(string info) : base(info)
{
}
}
}