maven-plugin-testing-harness/src/main/java/org/apache/maven/api/plugin/testing/ConfigurationException.java [26:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class ConfigurationException extends Exception {
    /** serialVersionUID */
    static final long serialVersionUID = -6180939638742159065L;

    /**
     * @param message The detailed message.
     */
    public ConfigurationException(String message) {
        super(message);
    }

    /**
     * @param cause The detailed cause.
     */
    public ConfigurationException(Throwable cause) {
        super(cause);
    }

    /**
     * @param message The detailed message.
     * @param cause The detailed cause.
     */
    public ConfigurationException(String message, Throwable cause) {
        super(message, cause);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/ConfigurationException.java [26:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class ConfigurationException extends Exception {
    /** serialVersionUID */
    static final long serialVersionUID = -6180939638742159065L;

    /**
     * @param message The detailed message.
     */
    public ConfigurationException(String message) {
        super(message);
    }

    /**
     * @param cause The detailed cause.
     */
    public ConfigurationException(Throwable cause) {
        super(cause);
    }

    /**
     * @param message The detailed message.
     * @param cause The detailed cause.
     */
    public ConfigurationException(String message, Throwable cause) {
        super(message, cause);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



