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

     1  package actionerror
     2  
     3  // OrphanedRoutesNotFoundError is an error wrapper that represents the case
     4  // when no orphaned routes are found.
     5  type OrphanedRoutesNotFoundError struct{}
     6  
     7  // Error method to display the error message.
     8  func (OrphanedRoutesNotFoundError) Error() string {
     9  	return "No orphaned routes were found."
    10  }