mirror of
https://github.com/containers/podman.git
synced 2025-12-11 09:18:34 +08:00
11 lines
199 B
Go
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)
|
|
}
|