github.com/swisscom/cloudfoundry-cli@v7.1.0+incompatible/actor/actionerror/space_ssh_already_enabled_error.go (about)

     1  package actionerror
     2  
     3  import "fmt"
     4  
     5  // SpaceSSHAlreadyEnabledError is returned when ssh is already enabled on the space
     6  type SpaceSSHAlreadyEnabledError struct {
     7  	Space string
     8  	Err   error
     9  }
    10  
    11  func (e SpaceSSHAlreadyEnabledError) Error() string {
    12  	if e.Err != nil {
    13  		return e.Err.Error()
    14  	}
    15  	return fmt.Sprintf("ssh support for space '%s' is already enabled.", e.Space)
    16  }