diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMap.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMap.java index 02a0937a4ef..7c6e6e14c1d 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMap.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/entity/TermConceptMap.java @@ -141,7 +141,7 @@ public class TermConceptMap implements Serializable { public TermConceptMap setVersion(String theVersion) { ValidateUtil.isNotTooLongOrThrowIllegalArgument(theVersion, MAX_VER_LENGTH, - "URL exceeds maximum length (" + MAX_URL_LENGTH + "): " + length(theVersion)); + "Version exceeds maximum length (" + MAX_VER_LENGTH + "): " + length(theVersion)); myVersion = theVersion; return this; }