Enum TyphonErrorCode
Numeric error codes organized by subsystem range. Only implemented codes are defined; reserved ranges are filled as later tiers are built out. Codes within a range are assigned sequentially as needed; gaps are intentional to allow insertion without renumbering.
public enum TyphonErrorCode
Fields
BulkLoadCheckpointTimeout = 7007The synchronous checkpoint at bulk-load completion did not finish within its timeout (see BulkLoadCheckpointTimeoutException).
BulkSessionAlreadyActive = 7005A bulk-load session is already open — only one is allowed per engine (see BulkSessionAlreadyActiveException).
BulkSessionClosed = 7006An operation was attempted on a bulk-load session that was already completed or disposed (see BulkSessionClosedException).
CommitDurabilityUncertain = 7008A published transaction's durability wait did not confirm its records reached stable storage (see CommitDurabilityUncertainException).
DataCorruption = 2003Structural data corruption or an integrity violation (see CorruptionException).
DatabaseLocked = 2007The database bundle is already locked by another process (see DatabaseLockedException).
InvalidDatabaseBundle = 2008A file occupies the database bundle path, which must be a directory (raised as a StorageException).
InvalidSystemAccess = 8001DEBUG-only: a system mutated a component it did not declare in its access set (see InvalidAccessException).
LockTimeout = 6003A shared or exclusive lock acquisition exceeded its deadline (see LockTimeoutException).
PageCacheBackpressureTimeout = 2006Page cache allocation timed out waiting for dirty pages to flush (see PageCacheBackpressureTimeoutException).
PageChecksumMismatch = 2005A page failed CRC32C verification — torn or corrupted (see PageCorruptionException).
ResourceExhausted = 6001A resource limit was exhausted — registry slots, active transactions, or segment capacity (see ResourceExhaustedException).
SchemaMigration = 3002A user-supplied migration function failed for one or more entities (see SchemaMigrationException).
SchemaValidation = 3001A component's runtime schema is incompatible with the persisted schema, or the persisted revision is newer than the runtime (see SchemaValidationException and SchemaDowngradeException).
StorageCapacityExceeded = 2004A storage capacity limit was exceeded.
TransactionTimeout = 1002A transaction exceeded its overall deadline (see TransactionTimeoutException).
UniqueConstraintViolation = 4001An insert or update would create a duplicate key in a unique index (see UniqueConstraintViolationException).
Unspecified = 0No specific error code — a generic or unclassified engine failure.
WalBackPressureTimeout = 7001A WAL commit-buffer claim timed out waiting for buffer space (see WalBackPressureTimeoutException).
WalClaimTooLarge = 7002A single WAL claim exceeds the entire commit-buffer capacity (see WalClaimTooLargeException).
WalSegmentError = 7004A WAL segment file operation (create, rotate, or header validation) failed (see WalSegmentException).
WalWriteFailure = 7003A fatal WAL write I/O failure — the engine can no longer accept durable commits (see WalWriteException).