{"record":{"id":"8a0f329e868c2350","repo":"OtterMind/Chat2DB","slug":"largecellvalue-unsupportedformat","errorCode":"largeCellValue.unsupportedFormat","errorMessage":"largeCellValue.unsupportedFormat","messagePattern":"largeCellValue\\.unsupportedFormat","errorType":"exception","errorClass":"BusinessException","httpStatus":null,"severity":"error","filePath":"chat2db-community-server/chat2db-community-domain/chat2db-community-domain-api/src/main/java/ai/chat2db/community/domain/api/enums/value/CellValueFormatEnum.java","lineNumber":22,"sourceCode":"import org.apache.commons.lang3.StringUtils;\n\nimport java.util.Locale;\n\npublic enum CellValueFormatEnum {\n    AUTO,\n    TEXT,\n    HEX,\n    BASE64,\n    RAW;\n\n    public static CellValueFormatEnum fromRequest(String value) {\n        if (StringUtils.isBlank(value)) {\n            return AUTO;\n        }\n        try {\n            return valueOf(value.trim().toUpperCase(Locale.ROOT));\n        } catch (IllegalArgumentException e) {\n            throw new BusinessException(\"largeCellValue.unsupportedFormat\", new Object[]{value}, e);\n        }\n    }\n\n    public String code() {\n        return name().toLowerCase(Locale.ROOT);\n    }\n\n    public boolean isBase64() {\n        return this == BASE64;\n    }\n\n    public boolean isEncoded() {\n        return this == HEX || this == BASE64;\n    }\n\n    public CellValueFormatEnum forRead() {\n        return this == AUTO || this == RAW ? HEX : this;\n    }","sourceCodeStart":4,"sourceCodeEnd":40,"githubUrl":"https://github.com/OtterMind/Chat2DB/blob/5ee1e990e73fbcae1969dc554be254fedb3ab888/chat2db-community-server/chat2db-community-domain/chat2db-community-domain-api/src/main/java/ai/chat2db/community/domain/api/enums/value/CellValueFormatEnum.java#L4-L40","documentation":"Error \"largeCellValue.unsupportedFormat\" thrown in OtterMind/Chat2DB.","triggerScenarios":"A large cell value was requested in a format the server does not support.","commonSituations":"See trigger scenarios.","solutions":["Request the large cell value in one of the formats listed in CellValueFormatEnum.","Convert the value client-side if the desired format is not supported."],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"5ee1e990e73fbcae1969dc554be254fedb3ab888","analyzedAt":"2026-08-14T07:05:03.077Z","schemaVersion":2},"datasetVersion":"2026-08-14T10:17:34.591Z"}