aboutsummaryrefslogtreecommitdiff
path: root/go-src/windows/errorMessages.go
blob: cd18fc7a80e763bdd5978e848673b60b0ac29bf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package windows

const (
	invalidArgument = "Invalid argument!"
	invalidCommand  = "Invalid command!"
)

func invalidValueFor(typeName string) string {
	return "Invalid value for " + typeName + "!"
}