mirror of https://github.com/hashicorp/consul
12 lines
201 B
Go
12 lines
201 B
Go
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
|
||
|
package client
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrUnauthorized = errors.New("unauthorized")
|
||
|
ErrForbidden = errors.New("forbidden")
|
||
|
)
|