
com.fathzer.launcher.Logger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-check-launcher Show documentation
Show all versions of java-check-launcher Show documentation
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