(format, direction string)
| 402 | } |
| 403 | |
| 404 | func sharedStateCodecNotConfiguredError(format, direction string) error { |
| 405 | return fmt.Errorf("fiber: shared state %s %s is not configured", format, direction) |
| 406 | } |
| 407 | |
| 408 | func sharedStateCodecPanicError(operation, format string, recovered any) error { |
| 409 | if err, ok := recovered.(error); ok { |
no test coverage detected