org.exparity.test.builder.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 org.exparity.test.builder;
/**
* @author Stewart Bissett
*/
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