ip2region/maker/csharp/DbMaker/DbMakerConfigException.cs
Killer 788dffa9fa add DataBlock
add DbConfig
2020-06-10 16:59:32 +08:00

15 lines
241 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace DbMaker
{
class DbMakerConfigException : Exception
{
public DbMakerConfigException(String message) : base(message)
{
}
}
}