mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
15 lines
844 B
Go
15 lines
844 B
Go
package sessions
|
|
|
|
import (
|
|
"github.com/iris-contrib/errors"
|
|
)
|
|
|
|
var (
|
|
// ErrProviderNotFound returns an error with message: 'Provider was not found. Please try to _ import one'
|
|
ErrProviderNotFound = errors.New("Provider with name '%s' was not found. Please try to _ import this")
|
|
// ErrProviderRegister returns an error with message: 'On provider registration. Trace: nil or empty named provider are not acceptable'
|
|
ErrProviderRegister = errors.New("On provider registration. Trace: nil or empty named provider are not acceptable")
|
|
// ErrProviderAlreadyExists returns an error with message: 'On provider registration. Trace: provider with name '%s' already exists, maybe you register it twice'
|
|
ErrProviderAlreadyExists = errors.New("On provider registration. Trace: provider with name '%s' already exists, maybe you register it twice")
|
|
)
|