
de.larssh.utils.test.AssertionException Maven / Gradle / Ivy
// Generated by delombok at Thu Aug 29 22:55:59 CEST 2019
package de.larssh.utils.test;
/**
* Thrown to indicate that an assertion failed in an unexpected situation.
*/
public class AssertionException extends RuntimeException {
// @EqualsAndHashCode(callSuper = true, onParam_ = { @Nullable })
private static final long serialVersionUID = -7622697337052594786L;
/**
* Constructs a new {@link AssertionException} with the given message.
*
* @param message the detail message
*/
public AssertionException(final String message) {
super(message, null);
}
/**
* Constructs a new {@link AssertionException} with the given message.
*
* @param cause the cause
* @param message the detail message
*/
public AssertionException(final Throwable cause, final String message) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy