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

org.junit.contrib.java.lang.system.internal.CheckExitCalled Maven / Gradle / Ivy

package org.junit.contrib.java.lang.system.internal;

public class CheckExitCalled extends SecurityException {
	private static final long serialVersionUID = 159678654L;

	private final Integer status;

	public CheckExitCalled(int status) {
		super("Tried to exit with status " + status + ".");
		this.status = status;
	}

	public Integer getStatus() {
		return status;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy