uk.co.it.modular.beans.BeanBuilderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-object-builder Show documentation
Show all versions of test-object-builder Show documentation
A library to support configurable instantiation and creation of random objects to use as test dummy's for model objects
The newest version!
package uk.co.it.modular.beans;
/**
* @author Stewart Bissett
*
* @deprecated Moved to {@link org.exparity.test.builder.BeanBuilderException}
*/
@Deprecated
public class BeanBuilderException extends RuntimeException {
private static final long serialVersionUID = 3815822809921345204L;
public BeanBuilderException(final String message, final Throwable cause) {
super(message, cause);
}
public BeanBuilderException(final String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy