[SPR-6048] fixed Exception signature in CronTriggerBean.afterPropertiesSet()

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1854 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Rob Harrop
2009-09-08 21:57:41 +00:00
parent 0822043ba4
commit 1356f03bcf
@@ -16,7 +16,6 @@
package org.springframework.scheduling.quartz;
import java.text.ParseException;
import java.util.Date;
import java.util.Map;
import java.util.TimeZone;
@@ -131,7 +130,7 @@ public class CronTriggerBean extends CronTrigger
}
public void afterPropertiesSet() throws ParseException {
public void afterPropertiesSet() throws Exception {
if (getName() == null) {
setName(this.beanName);
}