2020-12-01 09:43:46 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2023-07-04 13:48:52 +00:00
|
|
|
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")
|
2023-09-15 07:42:28 +00:00
|
|
|
ErrUserNotMember = errors.New("user not a member")
|
2020-12-01 09:43:46 +00:00
|
|
|
)
|