tg/src/tx/errors.go

26 lines
569 B
Go
Raw Normal View History

package tx
import (
"errors"
"fmt"
)
type WrongUpdateType struct {
Type string
}
var (
2023-08-15 16:02:14 +03:00
ScreenNotExistErr = errors.New("screen does not exist")
SessionNotExistErr = errors.New("session does not exist")
KeyboardNotExistErr = errors.New("keyboard does not exist")
NotAvailableErr = errors.New("the context is not available")
EmptyKeyboardTextErr = errors.New("got empty text for a keyboard")
)
func (wut WrongUpdateType) Error() string {
if wut.Type == "" {
return "wrong update type"
}
return fmt.Sprintf("wrong update type '%s'", wut.Type)
}