Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 16 additions & 29 deletions programming/javascript/api-reference/core/enum-error-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,24 +131,22 @@ enum EnumErrorCode {
EC_SECTION_LEVEL_RESULT_IRREPLACEABLE = -10072,
/** Incorrect axis definition. */
EC_AXIS_DEFINITION_INCORRECT = -10073,
/**The result is not replaceable due to type mismatch*/
/** The result is not replaceable due to type mismatch*/
EC_RESULT_TYPE_MISMATCH_IRREPLACEABLE = -10074,
/**Failed to load the PDF library.*/
/** Failed to load the PDF library.*/
EC_PDF_LIBRARY_LOAD_FAILED = -10075,
/**The license is initialized successfully but detected invalid content in your key.*/
/** The license is initialized successfully but detected invalid content in your key.*/
EC_LICENSE_WARNING = -10076,
/**One or more unsupported JSON keys were encountered and ignored from the template.*/
/** One or more unsupported JSON keys were encountered and ignored from the template.*/
EC_UNSUPPORTED_JSON_KEY_WARNING = -10077,
/**Model file is not found*/
/** Model file is not found*/
EC_MODEL_FILE_NOT_FOUND = -10078,
/**[PDF] No license found.*/
/** [PDF] No license found.*/
EC_PDF_LICENSE_NOT_FOUND = -10079,
/**The rectangle is invalid.*/
/** The rectangle is invalid.*/
EC_RECT_INVALID = -10080,
/*The template version is incompatible. Please use a compatible template.*/
EC_TEMPLATE_VERSION_INCOMPATIBLE = -10081

// DLS license error codes range from -20000 to -29999
/** The template version is incompatible. Please use a compatible template.*/
EC_TEMPLATE_VERSION_INCOMPATIBLE = -10081,
/** Indicates no license is available or the license is not set. */
EC_NO_LICENSE = -20000,
/** The provided Handshake Code is invalid or does not match expected format. */
Expand All @@ -171,12 +169,10 @@ enum EnumErrorCode {
EC_FAILED_TO_REACH_DLS = -20200,
/** Online license validation failed due to network issues. Using cached license information for validation.*/
EC_LICENSE_CACHE_USED = -20012,
/*License authentication failed: quota exceeded.*/
/** License authentication failed: quota exceeded.*/
EC_LICENSE_AUTH_QUOTA_EXCEEDED = -20013,
/**License restriction: the number of results has exceeded the allowed limit.*/
/** License restriction: the number of results has exceeded the allowed limit.*/
EC_LICENSE_RESULTS_LIMIT_EXCEEDED = -20014,

// DBR error codes range from -30000 to -39999
/** The specified barcode format is invalid or unsupported. */
EC_BARCODE_FORMAT_INVALID = -30009,
/** The license for decoding QR Codes is invalid or not present. */
Expand Down Expand Up @@ -213,29 +209,20 @@ enum EnumErrorCode {
EC_PHARMACODE_LICENSE_INVALID = -30062,
/** [Barcode Reader] No license found.*/
EC_BARCODE_READER_LICENSE_NOT_FOUND = -30063,

// DLR error codes range from -40000 to -49999
/** Indicates that the required character model file was not found, possibly due to incorrect paths or missing files. */
EC_CHARACTER_MODEL_FILE_NOT_FOUND = -40100,
/**There is a conflict in the layout of TextLineGroup. */
/** There is a conflict in the layout of TextLineGroup. */
EC_TEXT_LINE_GROUP_LAYOUT_CONFLICT = -40101,
/**There is a conflict in the regex of TextLineGroup. */
/** There is a conflict in the regex of TextLineGroup. */
EC_TEXT_LINE_GROUP_REGEX_CONFLICT = -40102,
/**[Label Recognizer] No license found.*/
/** [Label Recognizer] No license found.*/
EC_LABEL_RECOGNIZER_LICENSE_NOT_FOUND = -40103,

// DDN error codes range from -50000 to -59999
/** The specified quadrilateral is invalid, potentially due to incorrect points or an unprocessable shape. */
EC_QUADRILATERAL_INVALID = -50057,
/**[Document Normalizer] No license found.*/
/** [Document Normalizer] No license found.*/
EC_DOCUMENT_NORMALIZER_LICENSE_NOT_FOUND = -50058,

// Panorama error codes range from -70000 to -79999
/** The license for generating or processing panoramas is invalid or missing. */
EC_PANORAMA_LICENSE_INVALID = -70060,
// Reserved error codes range from -80000 to -89999

// DCP error codes range from -90000 to -99999
/** The specified resource path does not exist, indicating a missing directory or incorrect path specification. */
EC_RESOURCE_PATH_NOT_EXIST = -90001,
/** Failed to load the specified resource, which might be due to missing files, access rights, or other issues preventing loading. */
Expand All @@ -258,7 +245,7 @@ enum EnumErrorCode {
EC_VIN_LICENSE_INVALID = -90010,
/** The license required for parsing customized code types is invalid or not present. */
EC_CUSTOMIZED_CODE_TYPE_LICENSE_INVALID = -90011,
/**[Code Parser] No license found.*/
/** [Code Parser] No license found.*/
EC_CODE_PARSER_LICENSE_NOT_FOUND = -90012
}
```