Fixed typo

This commit is contained in:
Frank Tao 2020-09-06 11:47:07 -04:00
parent ed2801dbaf
commit 45b88de3b6
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}