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

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

The newest version!
package org.tbwork.anole.loader.exceptions;
 
public class BadFileException extends RuntimeException {

	public BadFileException()
    {
		super("Could not open the file.");
    }

	public BadFileException(String filepath)
    {
		super(String.format("Could not open the file: %s", filepath));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy