errors.go 244 B

1234567891011
  1. package settings
  2. import "fmt"
  3. type ErrPrivilegeElevatorNotFound struct {
  4. confValue string
  5. }
  6. func (e *ErrPrivilegeElevatorNotFound) Error() string {
  7. return fmt.Sprintf("unable to find a privilege elevator, config value: %s", e.confValue)
  8. }