mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2025-12-08 19:25:22 +00:00
12 lines
191 B
C#
12 lines
191 B
C#
using System;
|
|
|
|
namespace DbMaker
|
|
{
|
|
public class DbMakerConfigException : Exception
|
|
{
|
|
public DbMakerConfigException(String message) : base(message)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |