github.com/mook-as/cf-cli@v7.0.0-beta.28.0.20200120190804-b91c115fae48+incompatible/actor/actionerror/service_upgrade_not_available_error.go (about) 1 package actionerror 2 3 // ServiceUpgradeNotAvailableError is returned when attempting to upgrade a single service instance, 4 // but there is no upgrade available on the current service plan, i.e., service instance is already 5 // up-to-date. 6 type ServiceUpgradeNotAvailableError struct{} 7 8 func (e ServiceUpgradeNotAvailableError) Error() string { 9 return "No upgrade is available." 10 }