working on backend-side translations

This commit is contained in:
2025-12-15 22:49:17 +01:00
parent c7b5b11f4c
commit 8575a9a3a4
6 changed files with 77 additions and 46 deletions

View File

@@ -179,7 +179,7 @@ CREATE TABLE IF NOT EXISTS "companies" (
rs.close();
return companies;
} catch (SQLException e) {
throw databaseException(FAILED_TO_LOAD_USER_COMPANIES,userId).causedBy(e);
throw databaseException(FAILED_TO_LOAD_ENTITIES_OF_OWNER,"companies","user "+userId).causedBy(e);
}
}