ip2region/maker/csharp/DbMaker/DbMakerConfigException.cs
2020-06-11 22:10:56 +08:00

12 lines
191 B
C#

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