All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.exparity.stub.bean.BeanBuilderException Maven / Gradle / Ivy

Go to download

A Java library to support creation of test stubs. The library can create complete object graphs populated completely randomly, or can be populated with a mix of random and configured values.

There is a newer version: 2.0.8
Show newest version

package org.exparity.stub.bean;

/**
 * @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