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

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

The newest version!
package org.tbwork.anole.loader.exceptions;
 
public class BadJarFileException extends RuntimeException {
 
	public BadJarFileException()
    {
		super("Could not open the jar file.");
    }
	 
	public BadJarFileException(String filepath)
    {
		super(String.format("Could not open the jar file: %s", filepath));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy