Files
buildx/vendor/github.com/go-openapi/loads/errors.go
T
2026-03-25 15:47:08 -07:00

19 lines
435 B
Go

// SPDX-FileCopyrightText: Copyright 2015-2025 go-swagger maintainers
// SPDX-License-Identifier: Apache-2.0
package loads
type loaderError string
func (e loaderError) Error() string {
return string(e)
}
const (
// ErrLoads is an error returned by the loads package.
ErrLoads loaderError = "loaderrs error"
// ErrNoLoader indicates that no configured loader matched the input.
ErrNoLoader loaderError = "no loader matched"
)