Package org.jboss.seam.cron.impl.scheduling.exception

Examples of org.jboss.seam.cron.impl.scheduling.exception.SchedulerConfigurationException


            cronScheduleSpec = scheduleSpec;
        } else {
            cronScheduleSpec = schedProperties.getProperty(scheduleSpec);

            if (StringUtils.isEmpty(cronScheduleSpec)) {
                throw new SchedulerConfigurationException(
                        "Found empty or missing cron definition for named schedule '"
                        + scheduleSpec + "'. Should be specified in the file "
                        + SCHEDULE_PROPERTIES_PATH + " on the classpath.");
            }
        }
View Full Code Here

TOP

Related Classes of org.jboss.seam.cron.impl.scheduling.exception.SchedulerConfigurationException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.