Files
podman/vendor/github.com/go-openapi/strfmt/errors.go
2025-06-05 12:19:59 +02:00

11 lines
199 B
Go

package strfmt
type strfmtError string
// ErrFormat is an error raised by the strfmt package
const ErrFormat strfmtError = "format error"
func (e strfmtError) Error() string {
return string(e)
}