edu.uiuc.ncsa.security.util.cli.ExitException Maven / Gradle / Ivy
package edu.uiuc.ncsa.security.util.cli;
import edu.uiuc.ncsa.security.core.exceptions.GeneralException;
/**
* Created by Jeff Gaynor
* on 5/30/13 at 10:46 AM
*/
public class ExitException extends GeneralException {
public ExitException() {
}
public ExitException(Throwable cause) {
super(cause);
}
public ExitException(String message) {
super(message);
}
public ExitException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy