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

io.github.dbstarll.utils.lang.launcher.TaskLauncher Maven / Gradle / Ivy

The newest version!
package io.github.dbstarll.utils.lang.launcher;

public abstract class TaskLauncher extends AbstractLauncher {
    @Override
    protected final int run(Class taskClass, String... args) throws LaunchException, Throwable {
        Task task;
        try {
            task = taskClass.newInstance();
        } catch (Throwable ex) {
            throw new LaunchException(ex);
        }
        return task.run(args);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy