session: move errors to a separate file

This commit is contained in:
Leonard Lyubich 2020-05-08 12:37:56 +03:00
parent b079a7604f
commit 2c2150b101
3 changed files with 15 additions and 9 deletions

View file

@ -4,7 +4,6 @@ import (
"context"
"crypto/ecdsa"
"github.com/nspcc-dev/neofs-api-go/internal"
"github.com/nspcc-dev/neofs-api-go/refs"
"github.com/nspcc-dev/neofs-api-go/service"
)
@ -79,6 +78,3 @@ type CreateResult interface {
type Creator interface {
Create(context.Context, CreateParamsSource) (CreateResult, error)
}
// ErrPrivateTokenNotFound is raised when addressed private token was not found in storage.
const ErrPrivateTokenNotFound = internal.Error("private token not found")