DeserializationErrorf creates a formatted deserialization error go:noinline
(format string, args ...any)
| 230 | // |
| 231 | //go:noinline |
| 232 | func DeserializationErrorf(format string, args ...any) Error { |
| 233 | return panicIfEnabled(Error{ |
| 234 | kind: ErrKindDeserializationFailed, |
| 235 | message: fmt.Sprintf(format, args...), |
| 236 | }) |
| 237 | } |
| 238 | |
| 239 | // MaxDepthExceededError creates a max depth exceeded error |
| 240 | // |