
morfologik.tools.ExitStatusException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of morfologik-tools Show documentation
Show all versions of morfologik-tools Show documentation
Morfologik Command Line Tools
package morfologik.tools;
import java.util.Locale;
@SuppressWarnings("serial")
class ExitStatusException extends RuntimeException {
final ExitStatus exitStatus;
public ExitStatusException(ExitStatus status, String message, Object... args) {
this(status, null, message, args);
}
public ExitStatusException(ExitStatus status, Throwable t, String message, Object... args) {
super(String.format(Locale.ROOT, message, args), t);
this.exitStatus = status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy