Merge pull request #1615 from gro-gg:patch-1

* pr/1615:
  Fix exception message
This commit is contained in:
Stephane Nicoll 2017-12-09 15:46:55 -08:00
commit 206a5e02dd
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ public class ScheduledAnnotationBeanPostProcessor
}
catch (NumberFormatException ex) {
throw new IllegalArgumentException(
"Invalid initialDelayString value \"" + initialDelayString + "\" - cannot parse into integer");
"Invalid initialDelayString value \"" + initialDelayString + "\" - cannot parse into long");
}
}
}