
com.antiaction.common.cli.ArgumentParserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-cli Show documentation
Show all versions of common-cli Show documentation
Multipurpose library for handling commnad line interface arguments.
The newest version!
/*
* Created on 06/02/2012
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.antiaction.common.cli;
import java.io.IOException;
public class ArgumentParserException extends IOException {
/**
* UID.
*/
private static final long serialVersionUID = -8007926073603384778L;
public ArgumentParserException() {
super();
}
public ArgumentParserException(String message) {
super( message );
}
public ArgumentParserException(String message, Throwable cause) {
super( message, cause );
}
public ArgumentParserException(Throwable cause) {
super( cause );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy