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

com.github.anhem.testpopulator.exception.PopulateException Maven / Gradle / Ivy

Go to download

Populate java classes with fixed or random data using reflection. Facilitates the creation of objects in tests.

The newest version!
package com.github.anhem.testpopulator.exception;

public class PopulateException extends RuntimeException {

    public PopulateException(String message) {
        super(message);
    }

    public PopulateException(String message, Exception e) {
        super(message, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy