Handle Errors

Use when handling errors and halting requests in Hanami 2.x Actions — fail fast with `halt STATUS, {error:}.to_json` for early returns, rescue `StandardError` (never `Exception`) logging full details internally but returning generic messages to clients, let invalid params halt automatically with 422 before `#handle` runs without manual `params.valid?` checks, and match error response format to action format (no HTML errors in JSON actions). Demonstrates halt status codes (404, 422, 500), rescue patterns, and consistent error shapes. Use when implementing error handling patterns, exception handling, or returning JSON error responses in Hanami actions.

igmarin d2cec7a 5.7 KB Updated

File contents

igmarin/hanakai-yaku/tree/main/skills/actions/handle-errors commit d2cec7ac98

Frequently asked questions

npx skillmds@latest add igmarin/handle-errors