DB · Error
E_NEON_HTTP
Generic non-OK HTTP from Neon.
— · Resolution
How to recover
Inspect `error.context.httpStatus` and `error.context.body`.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_NEON_HTTP',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Inspect `error.context.httpStatus` and `error.context.body`.',
docs: 'https://openagentry.dev/errors/E_NEON_HTTP',
});
The context field carries adapter-specific
detail (HTTP status, missing env-var names, validation issues). It
never contains secret values.
— · See also