Source File
errors.go
Belonging Package
github.com/gotd/td/tdjson
package tdjsonimport ()// UnexpectedIDError means that unknown or unexpected type id was decoded.type UnexpectedIDError struct {ID string}func ( *UnexpectedIDError) () string {return fmt.Sprintf("unexpected id %s", .ID)}// NewUnexpectedID return new UnexpectedIDError.func ( string) error {return &UnexpectedIDError{ID: }}// ErrTypeIDNotFound means that @type field is expected, but not found.var ErrTypeIDNotFound = errors.New("@type field is expected, but not found")
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |