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

org.jerkar.tool.JkException Maven / Gradle / Ivy

There is a newer version: 0.7.0.RELEASE
Show newest version
package org.jerkar.tool;

/**
 * Exception launched to break the build. Throw this exception when you want to
 * break the build for whatever reason (compilation error, test failures, ...).
 *
 * @author Jerome Angibaud
 */
public final class JkException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    /**
     * Constructs a {@link JkException} with the specified message.
     */
    public JkException(String message) {
        super(message);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy