aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/TextEncoding/NLangDetect/ErrorCode.cs
blob: 87f07fc9ccf7cb9e713993ab8b97f66cb5338e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace NLangDetect.Core
{
    public enum ErrorCode
    {
        NoTextError,
        FormatError,
        FileLoadError,
        DuplicateLangError,
        NeedLoadProfileError,
        CantDetectError,
        CantOpenTrainData,
        TrainDataFormatError,
        InitParamError,
    }
}