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

org.tbwork.anole.loader.exceptions.RetrieveConfigTimeoutException Maven / Gradle / Ivy

The newest version!
package org.tbwork.anole.loader.exceptions;
 

public class RetrieveConfigTimeoutException extends RuntimeException{
 
	public RetrieveConfigTimeoutException(){
		super("Timeout when retrieving config with the specified key");
	}
	
	public RetrieveConfigTimeoutException(String key){
		super(String.format("Timeout when retrieving config with the specified key = %s", key));
	}
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy