ip2region_private/maker/csharp/DbMaker/DbMakerConfigException.cs

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)
{
}
}
}