github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/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  }