
de.weltraumschaf.commons.system.DefaultExiter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of system Show documentation
Show all versions of system Show documentation
Abstraction of system call such es exit().
The newest version!
/*
* LICENSE
*
* "THE BEER-WARE LICENSE" (Revision 43):
* "Sven Strittmatter" wrote this file.
* As long as you retain this notice you can do whatever you want with
* this stuff. If we meet some day, and you think this stuff is worth it,
* you can buy me a non alcohol-free beer in return.
*
* Copyright (C) 2012 "Sven Strittmatter"
*/
package de.weltraumschaf.commons.system;
/**
* Invokes {@link java.lang.System#exit(int)}.
*
* @since 1.0.0
* @author Sven Strittmatter <[email protected]>
*/
public final class DefaultExiter extends ExitableAdapter {
@Override
public void exit(int status) {
System.exit(status);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy