
net.kemitix.inline.exceptions.InlineException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of inline-exceptions Show documentation
Show all versions of inline-exceptions Show documentation
Optionally throw exceptions without adding an if-then branch that affects code coverage
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