mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-17 10:00:17 -05:00
13 lines
423 B
Go
13 lines
423 B
Go
package error_helpers
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/turbot/steampipe/pkg/constants"
|
|
)
|
|
|
|
var MissingCloudTokenError = fmt.Errorf("Not authenticated for Turbot Pipes.\nPlease run %s or setup a token.", constants.Bold("steampipe login"))
|
|
var InvalidCloudTokenError = fmt.Errorf("Invalid token.\nPlease run %s or setup a token.", constants.Bold("steampipe login"))
|
|
var InvalidStateError = errors.New("invalid state")
|