jellyfin/Emby.Server.Implementations/TextEncoding/NLangDetect/ErrorCode.cs

16 lines
259 B
C#
Raw Normal View History

2017-06-17 22:59:17 +00:00
namespace NLangDetect.Core
{
public enum ErrorCode
{
NoTextError,
FormatError,
FileLoadError,
DuplicateLangError,
NeedLoadProfileError,
CantDetectError,
CantOpenTrainData,
TrainDataFormatError,
InitParamError,
}
}