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

com.github.dbunit.rules.leak.LeakHunterException Maven / Gradle / Ivy

package com.github.dbunit.rules.leak;

/**
 * Created by pestano on 07/09/16.
 */
public class LeakHunterException extends RuntimeException {


    public LeakHunterException(String methodName, int numberOfConnections) {
        super(String.format("Execution of method %s left %d open connection(s).",methodName,numberOfConnections));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy