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

com.github.ltsopensource.startup.tasktracker.CfgException Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
package com.github.ltsopensource.startup.tasktracker;

/**
 * @author Robert HG ([email protected]) on 9/1/15.
 */
public class CfgException extends Exception {

	private static final long serialVersionUID = -661377294271386745L;

	public CfgException() {
        super();
    }

    public CfgException(String message) {
        super(message);
    }

    public CfgException(String message, Throwable cause) {
        super(message, cause);
    }

    public CfgException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy