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

hudson.plugins.starteam.StarTeamSCMException Maven / Gradle / Ivy

package hudson.plugins.starteam;


/**
 * This exception signals an error with StarTeam SCM.
 * 
 * @author Ilkka Laukkanen 
 * 
 */
public class StarTeamSCMException extends Exception {

	/**
	 * serial version id
	 */
	private static final long serialVersionUID = 53829064700557888L;

	/**
	 * @param message
	 * @param cause
	 */
	public StarTeamSCMException(String message, Throwable cause) {
		super(message, cause);
	}

	/**
	 * @param message
	 */
	public StarTeamSCMException(String message) {
		super(message);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy