2019-09-07 20:46:58 +00:00
|
|
|
package slack
|
|
|
|
|
2020-03-01 19:59:19 +00:00
|
|
|
import "github.com/slack-go/slack/internal/errorsx"
|
2019-09-07 20:46:58 +00:00
|
|
|
|
|
|
|
// Errors returned by various methods.
|
|
|
|
const (
|
|
|
|
ErrAlreadyDisconnected = errorsx.String("Invalid call to Disconnect - Slack API is already disconnected")
|
|
|
|
ErrRTMDisconnected = errorsx.String("disconnect received while trying to connect")
|
2019-12-07 21:54:36 +00:00
|
|
|
ErrRTMGoodbye = errorsx.String("goodbye detected")
|
|
|
|
ErrRTMDeadman = errorsx.String("deadman switch triggered")
|
2019-09-07 20:46:58 +00:00
|
|
|
ErrParametersMissing = errorsx.String("received empty parameters")
|
2020-09-04 21:29:13 +00:00
|
|
|
ErrBlockIDNotUnique = errorsx.String("Block ID needs to be unique")
|
2019-09-07 20:46:58 +00:00
|
|
|
ErrInvalidConfiguration = errorsx.String("invalid configuration")
|
|
|
|
ErrMissingHeaders = errorsx.String("missing headers")
|
|
|
|
ErrExpiredTimestamp = errorsx.String("timestamp is too old")
|
|
|
|
)
|
|
|
|
|
|
|
|
// internal errors
|
|
|
|
const (
|
|
|
|
errPaginationComplete = errorsx.String("pagination complete")
|
|
|
|
)
|