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

com.fathzer.launcher.Logger Maven / Gradle / Ivy

Go to download

A java application launcher that checks if used JRE is compatible with launched application

The newest version!
package com.fathzer.launcher;

/** A class that can output messages when application launch fails.
 */
public interface Logger {
	/** Reports that java version is not supported.
	 * @param min The minimum java version required.
	 * @param current The current java version
	 */
	void wrongJavaVersion(Version min, String current);

	/** Reports a fatal error.
	 * @param exception The exception
	 */
	void fatalError(Exception exception);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy