github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/actor/actionerror/service_upgrade_not_available_error.go (about)

     1  package actionerror
     2  
     3  // ServiceInstanceUpgradeNotAvailableError 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 ServiceInstanceUpgradeNotAvailableError struct{}
     7  
     8  func (e ServiceInstanceUpgradeNotAvailableError) Error() string {
     9  	return "No upgrade is available."
    10  }