mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 06:36:32 +00:00
13 lines
274 B
Go
13 lines
274 B
Go
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")
|
|
)
|