mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2026-01-25 17:16:11 +00:00
15 lines
241 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|