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

io.linguarobot.aws.cdk.maven.CdkPluginException Maven / Gradle / Ivy

package io.linguarobot.aws.cdk.maven;

/**
 * Base exception for all the exceptions thrown during plugin execution time.
 */
public class CdkPluginException extends RuntimeException {

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy