github.com/gophercloud/gophercloud@v1.11.0/openstack/compute/apiversions/errors.go (about)

     1  package apiversions
     2  
     3  import (
     4  	"fmt"
     5  )
     6  
     7  // ErrVersionNotFound is the error when the requested API version
     8  // could not be found.
     9  type ErrVersionNotFound struct{}
    10  
    11  func (e ErrVersionNotFound) Error() string {
    12  	return fmt.Sprintf("Unable to find requested API version")
    13  }