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

     1  package actionerror
     2  
     3  // StagingFailedNoAppDetectedError is returned when staging an application fails.
     4  type StagingFailedNoAppDetectedError struct {
     5  	Reason string
     6  }
     7  
     8  func (e StagingFailedNoAppDetectedError) Error() string {
     9  	return e.Reason
    10  }