mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
16 lines
259 B
C#
16 lines
259 B
C#
namespace NLangDetect.Core
|
|
{
|
|
public enum ErrorCode
|
|
{
|
|
NoTextError,
|
|
FormatError,
|
|
FileLoadError,
|
|
DuplicateLangError,
|
|
NeedLoadProfileError,
|
|
CantDetectError,
|
|
CantOpenTrainData,
|
|
TrainDataFormatError,
|
|
InitParamError,
|
|
}
|
|
}
|