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