github.com/mponton/terratest@v0.44.0/modules/version-checker/errors.go (about) 1 package version_checker 2 3 // VersionMismatchErr is an error to indicate version mismatch. 4 type VersionMismatchErr struct { 5 errorMessage string 6 } 7 8 func (r *VersionMismatchErr) Error() string { 9 return r.errorMessage 10 }