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

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

The newest version!
package org.tbwork.anole.loader.exceptions;
 
 
public class ConfigFileDirectoryNotExistException extends RuntimeException {
  
	public ConfigFileDirectoryNotExistException()
    {
    	super("Could not find the configuration file path.");
    }
	
	public ConfigFileDirectoryNotExistException(String filePath)
    {
		super(String.format("Could not find the configuration file path: %s", filePath));
    }
	 
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy