de.team33.patterns.arbitrary.mimas.UnfitConditionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arbitrary-mimas Show documentation
Show all versions of arbitrary-mimas Show documentation
Provides classes that support the generation of arbitrary values of virtually any type.
The newest version!
package de.team33.patterns.arbitrary.mimas;
/**
* A {@link RuntimeException} reflecting the unfit condition of a component involved in an operation.
*/
public class UnfitConditionException extends RuntimeException {
UnfitConditionException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy