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

edu.hm.hafner.analysis.ParsingCanceledException Maven / Gradle / Ivy

package edu.hm.hafner.analysis;

/**
 * Indicates that parsing has been canceled due to a user initiated interrupt.
 *
 * @author Ullrich Hafner
 */
public class ParsingCanceledException extends RuntimeException {
    private static final long serialVersionUID = 3341274949787014225L;

    /**
     * Creates a new instance of {@link ParsingCanceledException}.
     */
    public ParsingCanceledException() {
        super("Canceling parsing since build has been aborted.");
    }

    /**
     * Creates a new instance of {@link ParsingCanceledException}.
     *
     * @param cause
     *         the cause (which is saved for later retrieval by the {@link #getCause()} method).
     */
    public ParsingCanceledException(final Throwable cause) {
        super("Canceling parsing since build has been aborted.", cause);
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy