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

com.griddynamics.qa.datapool.DataPoolException Maven / Gradle / Ivy

Go to download

Test Data Pool tool is intended to mitigate risks of running automated tests against multiple unstable “FullDB” environments having unpredictable set of data.

The newest version!
package com.griddynamics.qa.datapool;

/**
 * @author Alexey Lyanguzov.
 */
public class DataPoolException extends RuntimeException{
    public DataPoolException(String message, Object...args) {
        super(String.format(message, args));
    }

    public DataPoolException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy