Merge pull request #1615 from gro-gg:patch-1
* pr/1615: Fix exception message
This commit is contained in:
commit
206a5e02dd
|
@ -365,7 +365,7 @@ public class ScheduledAnnotationBeanPostProcessor
|
||||||
}
|
}
|
||||||
catch (NumberFormatException ex) {
|
catch (NumberFormatException ex) {
|
||||||
throw new IllegalArgumentException(
|
throw new IllegalArgumentException(
|
||||||
"Invalid initialDelayString value \"" + initialDelayString + "\" - cannot parse into integer");
|
"Invalid initialDelayString value \"" + initialDelayString + "\" - cannot parse into long");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue