github.com/sleungcy-sap/cli@v7.1.0+incompatible/util/manifest/global_fields_error.go (about) 1 package manifest 2 3 import ( 4 "fmt" 5 "strings" 6 ) 7 8 type GlobalFieldsError struct { 9 Fields []string 10 } 11 12 func (e GlobalFieldsError) Error() string { 13 return fmt.Sprintf("unsupported global fields: %s", strings.Join(e.Fields, ", ")) 14 }