confluencemavenplugin.DeployException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of confluence-maven-plugin Show documentation
Show all versions of confluence-maven-plugin Show documentation
Enables you to maintain confluence pages whitin your code and update a confluence space when your are ready to do that.
package confluencemavenplugin;
public class DeployException extends Exception {
private static final long serialVersionUID = 1L;
public DeployException(String message, Throwable cause) {
super(message, cause);
}
public DeployException(String message) {
super(message);
}
public DeployException(Throwable cause) {
super(cause);
}
}