Files

16 lines
466 B
Go
Raw Permalink Normal View History

2020-12-01 10:43:46 +01:00
package protocol
import (
"github.com/pkg/errors"
)
var (
ErrChatIDEmpty = errors.New("chat ID is empty")
ErrChatNotFound = errors.New("can't find chat")
ErrNotImplemented = errors.New("not implemented")
ErrContactNotFound = errors.New("contact not found")
ErrCommunityIDEmpty = errors.New("community ID is empty")
ErrUserNotMember = errors.New("user not a member")
ErrInvalidResponseTo = errors.New("can't find message replied to")
2020-12-01 10:43:46 +01:00
)