kvm/internal/ota/errors.go

9 lines
177 B
Go

package ota
import "errors"
var (
// ErrVersionNotFound is returned when the specified version is not found
ErrVersionNotFound = errors.New("specified version not found")
)