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