package services // ValidationError represents a validation error in tests // This is a shared test helper type used across multiple test files type ValidationError struct { Field string Message string } func (e *ValidationError) Error() string { if e.Field != "" { return e.Field + ": " + e.Message } return e.Message }