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,
|
|||
|
}
|
|||
|
}
|