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

com.datorama.oss.timbermill.common.exceptions.MaximumInsertTriesException Maven / Gradle / Ivy

There is a newer version: 2.5.3
Show newest version
package com.datorama.oss.timbermill.common.exceptions;

public class MaximumInsertTriesException extends Exception {
	private int maxTries;
	public MaximumInsertTriesException(int maxTries) {
		this.maxTries = maxTries;
	}

	public int getMaximumTriesNumber(){
		return maxTries;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy