mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 00:45:43 +00:00
10 lines
199 B
Go
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)
|
|
}
|