You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngs/errors.go

12 lines
355 B
Go

package ngs
import "errors"
// Errors that could be occurred during message handling.
var (
ErrCloseClosedGroup = errors.New("close closed group")
ErrClosedGroup = errors.New("group closed")
ErrMemberNotFound = errors.New("member not found in the group")
ErrSessionDuplication = errors.New("session has existed in the current group")
)