You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/errors/option.go

40 lines
793 B

package errors
// GetOpts - iterate the inbound Options and return a struct.
func GetOpts(opt ...Option) Options {
opts := getDefaultOptions()
for _, o := range opt {
o(&opts)
}
return opts
}
// Option - how Options are passed as arguments.
type Option func(*Options)
// Options - how Options are represented.
type Options struct {
withErrWrapped error
withErrMsg string
}
func getDefaultOptions() Options {
return Options{}
}
// WithErrCode provides an option to provide an error to wrap when creating a
// new error.
func WithWrap(e error) Option {
return func(o *Options) {
o.withErrWrapped = e
}
}
// WithMsg provides an option to provide a message when creating a new
// error.
func WithMsg(msg string) Option {
return func(o *Options) {
o.withErrMsg = msg
}
}