14 lines
296 B
C#
14 lines
296 B
C#
namespace RoadFlow.Pinyin.exception
|
|
{
|
|
/// <summary>
|
|
/// 转换拼音的字符非汉字字符
|
|
/// </summary>
|
|
public class UnsupportedUnicodeException : PinyinException
|
|
{
|
|
public UnsupportedUnicodeException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|