package validator type FieldError struct { ErrorMsg string } func (fe *FieldError) Error() string { return fe.ErrorMsg }