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

morfologik.tools.ExitStatusException Maven / Gradle / Ivy

There is a newer version: 2.1.9
Show newest version
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