github.com/LukasHeimann/cloudfoundrycli@v7.1.0+incompatible/actor/actionerror/plugin_invalid_library_version_error.go (about) 1 package actionerror 2 3 // PluginInvalidLibraryVersionError is returned with a plugin is invalid because it is 4 // compiled with an incompatible version of the library. 5 type PluginInvalidLibraryVersionError struct { 6 } 7 8 func (PluginInvalidLibraryVersionError) Error() string { 9 return "This plugin is not compatible with this version of the CLI" 10 }