github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/api/cloudcontroller/ccerror/resource_not_found_error.go (about)

     1  package ccerror
     2  
     3  // ResourceNotFoundError is returned when the client requests a resource that
     4  // does not exist or does not have permissions to see.
     5  type ResourceNotFoundError struct {
     6  	Message string
     7  }
     8  
     9  func (e ResourceNotFoundError) Error() string {
    10  	return e.Message
    11  }