lightning-terminal/session/errors.go

10 lines
221 B
Go
Raw Normal View History

package session
import "errors"
var (
// ErrSessionNotFound is an error returned when we attempt to retrieve
// information about a session but it is not found.
ErrSessionNotFound = errors.New("session not found")
)