PanicHandler is the interface used to create custom panic errors that occur during query execution.
| 6 | |
| 7 | // PanicHandler is the interface used to create custom panic errors that occur during query execution. |
| 8 | type PanicHandler interface { |
| 9 | MakePanicError(ctx context.Context, value any) *QueryError |
| 10 | } |
| 11 | |
| 12 | // DefaultPanicHandler is the default [PanicHandler]. |
| 13 | type DefaultPanicHandler struct{} |
no outgoing calls
no test coverage detected
searching dependent graphs…