org.rhq.plugins.apache.parser.ApacheParserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhq-apache-plugin Show documentation
Show all versions of rhq-apache-plugin Show documentation
a plugin for managing Apache web servers (1.3 and later)
package org.rhq.plugins.apache.parser;
public class ApacheParserException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
*
*/
public ApacheParserException() {
super();
}
/**
* @param message
* @param cause
*/
public ApacheParserException(String message, Throwable cause) {
super(message, cause);
}
/**
* @param message
*/
public ApacheParserException(String message) {
super(message);
}
/**
* @param cause
*/
public ApacheParserException(Throwable cause) {
super(cause);
}
}