github.com/randomtask1155/cli@v6.41.1-0.20181227003417-a98eed78cbde+incompatible/command/translatableerror/no_compatible_binary_error.go (about) 1 package translatableerror 2 3 type NoCompatibleBinaryError struct { 4 } 5 6 func (e NoCompatibleBinaryError) Error() string { 7 return "Plugin requested has no binary available for your platform." 8 } 9 10 func (e NoCompatibleBinaryError) Translate(translate func(string, ...interface{}) string) string { 11 return translate(e.Error()) 12 }