故障排查
本指南汇总了使用 Fory Go 时的常见问题与解决方案。
错误类型
Fory Go uses typed errors with specific error kinds:
type Error struct {
kind ErrorKind
message string
// Additional context fields
}
func (e Error) Kind() ErrorKind { return e.kind }
func (e Error) Error() string { return e.message }