All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alexkasko.tasks.TaskEngineException Maven / Gradle / Ivy

The newest version!
package com.alexkasko.tasks;

/**
 * Runtime exception for task-engine related errors
 *
 * @author alexkasko
 * Date: 3/22/13
 */
public class TaskEngineException extends RuntimeException {
    private static final long serialVersionUID = 3388511296426912331L;

    /**
     * Constructor
     *
     * @param message exception message
     */
    public TaskEngineException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy