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

This commit is contained in:
Rob Harrop 2009-09-08 21:57:41 +00:00
parent 2b96fe8b5d
commit 414d6633ea
1 changed files with 1 additions and 2 deletions

View File

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