16 lines
260 B
C#
16 lines
260 B
C#
using System;
|
|
|
|
namespace RoadFlow.Pinyin.exception
|
|
{
|
|
/// <summary>
|
|
/// 拼音异常类
|
|
/// </summary>
|
|
public class PinyinException : Exception
|
|
{
|
|
public PinyinException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|