Skip to content

Commit ec6ff4b

Browse files
authored
Update szerror.py (#476)
* Update szerror.py from sz-sdk-errors and bump version to 4.1.1 Resolves #475 * #475 Prepare for versioned release * #475 Prepare for versioned release * #475 Fix lint issue
1 parent 0094d7e commit ec6ff4b

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning].
99

1010
### Changed in Unreleased
1111

12+
-
13+
14+
## [4.1.1] - 2026-04-14
15+
16+
### Added in 4.1.1
17+
18+
- Updated szerror.py and szengineflags.py
19+
1220
## [4.1.0] - 2025-12-22
1321

1422
### Added in 4.1.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "senzing"
3-
version = "4.1.0"
3+
version = "4.1.1"
44
description = "Python SDK method definitions"
55
authors = [{ name = "senzing", email = "support@senzing.com" }]
66
readme = "README.md"

src/senzing/szerror.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
DO NOT EDIT. This code is generated.
44
Generated by: sz-sdk-errors/bin/generate_python.py
55
Generated for: sz-sdk-python/src/senzing/szerror.py
6-
Generated date: 2026-01-05T16:04:07.970468+00:00
6+
Generated date: 2026-04-13T21:21:28.840885+00:00
77
"""
88

99
# Metadata
@@ -253,6 +253,7 @@ class SzUnhandledError(SzUnrecoverableError):
253253
1017: SzDatabaseError, # EAS_ERR_DATABASE_OPERATOR_NOT_SET "Database operator not set '{0}'"
254254
1018: SzDatabaseError, # EAS_ERR_DATABASE_EXCEPTION_GENERATOR_NOT_SET "Database exception generator not set '{0}'"
255255
1019: SzConfigurationError, # EAS_ERR_DATABASE_SCHEMA_TABLES_NOT_FOUND "Datastore schema tables not found. [{0}]"
256+
1020: SzDatabaseConnectionLostError, # EAS_ERR_DATABASE_CONNECTION_NEEDS_VALIDATION "Database Connection Needs Validation '{0}'"
256257
2001: SzConfigurationError, # EAS_ERR_FEATURE_HAS_NO_FTYPE_CODE "Cannot process feature with no FTYPE_CODE[{0}]"
257258
2002: SzError, # EAS_ERR_REQUESTED_CONFIG_FOR_INVALID_FTYPE_CODE "Requested config for invalid FTYPE_CODE[{0}]"
258259
2003: SzError, # EAS_ERR_NO_FELEM_CODE "Cannot process OBS_FELEM with no FELEM_CODE[{0}]"
@@ -611,5 +612,6 @@ class SzUnhandledError(SzUnrecoverableError):
611612
9804: SzError, # EAS_ERR_NULL_PARAMETER "Invalid null parameter [{1}] passed to function [{0}]"
612613
9805: SzError, # EAS_ERR_ADDRESS_INTERPRETER_NOT_INITIALIZED "AddressInterpreter not initialized - initializeAI() must be called before primeAddressInterpreter()"
613614
9806: SzError, # EAS_ERR_GNR_RESOURCE_HANDLE_NOT_INITIALIZED "GNRResourceHandle not initialized - primeGNRResources() must be called first"
615+
9807: SzError, # EAS_ERR_ADDRESS_INTERPRETER_INIT_FAILED "AddressInterpreter initialization failed: {0}"
614616
}
615617
# fmt: on

0 commit comments

Comments
 (0)