![JAR search and dependency download from the Maven repository](/logo.png)
it.sauronsoftware.cron4j.InvalidPatternException Maven / Gradle / Ivy
The newest version!
/*
* cron4j - A pure Java cron-like scheduler
*
* Copyright (C) 2007-2010 Carlo Pelliccia (www.sauronsoftware.it)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version
* 2.1, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License 2.1 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License version 2.1 along with this program.
* If not, see .
*/
package it.sauronsoftware.cron4j;
/**
*
* This kind of exception is thrown if an invalid scheduling pattern is
* encountered by the scheduler.
*
*
* @author Carlo Pelliccia
*/
public class InvalidPatternException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* Package-reserved construction.
*/
InvalidPatternException() {
}
/**
* Package-reserved construction.
*/
InvalidPatternException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy