github.com/cloudfoundry/cli@v7.1.0+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  }