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

edu.uiuc.ncsa.security.util.cli.ExitException Maven / Gradle / Ivy

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