spiegel_podman/vendor/github.com/go-openapi/strfmt/errors.go
Paul Holzinger 96abeafc61
vendor: update c/{common,image,storage} to latest main
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2025-06-05 12:19:59 +02:00

10 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)
}