We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cd7ae7 commit 4c56021Copy full SHA for 4c56021
Flow.Launcher.Infrastructure/PinyinAlphabet.cs
@@ -48,7 +48,7 @@ private void CreateDoublePinyinTableFromStream(Stream jsonStream)
48
string schemaKey = _settings.DoublePinyinSchema.ToString(); // Convert enum to string
49
if (!table.TryGetValue(schemaKey, out var value))
50
{
51
- throw new InvalidOperationException("DoublePinyinSchema is invalid or double pinyin table is broken.");
+ throw new ArgumentException("DoublePinyinSchema is invalid or double pinyin table is broken.");
52
}
53
currentDoublePinyinTable = new ReadOnlyDictionary<string, string>(value);
54
0 commit comments