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

net.kemitix.inline.exceptions.InlineException Maven / Gradle / Ivy

Go to download

Optionally throw exceptions without adding an if-then branch that affects code coverage

There is a newer version: 0.2.0
Show newest version
package net.kemitix.inline.exceptions;

/**
 * Represents an error using {@link InlineExceptions}.
 *
 * @author pcampbell
 */
public class InlineException extends Exception {

    /**
     * Creates an {@code InlineException}.
     *
     * @param cause the original exception
     */
    public InlineException(final Exception cause) {
        super(cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy