mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-13 14:16:42 +00:00
13 lines
371 B
Go
13 lines
371 B
Go
package user
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNoSuchAddress = errors.New("no such address")
|
|
ErrNotImplemented = errors.New("not implemented")
|
|
ErrNotSupported = errors.New("not supported")
|
|
ErrInvalidReturnPath = errors.New("invalid return path")
|
|
ErrInvalidRecipient = errors.New("invalid recipient")
|
|
ErrMissingAddrKey = errors.New("missing address key")
|
|
)
|