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