
OSGI-OPT.src.org.kohsuke.args4j.CmdLineException Maven / Gradle / Ivy
The newest version!
package org.kohsuke.args4j;
import java.util.Locale;
import org.kohsuke.args4j.spi.OptionHandler;
/**
* Signals an error in the user input.
*
* @author Kohsuke Kawaguchi
*/
public class CmdLineException extends Exception {
private static final long serialVersionUID = -8574071211991372980L;
private CmdLineParser parser = null;
/**
* The optional localized message.
* @see Throwable#getLocalizedMessage()
*/
private String localizedMessage = null;
/**
* @deprecated
* Use {@link #CmdLineException(CmdLineParser, String)}
*/
public CmdLineException(String message) {
super(message);
}
/**
* @deprecated
* Use {@link #CmdLineException(CmdLineParser, String, Throwable)}
*/
public CmdLineException(String message, Throwable cause) {
super(message, cause);
}
/**
* @deprecated
* Use {@link #CmdLineException(CmdLineParser, Throwable)}
*/
public CmdLineException(Throwable cause) {
super(cause);
}
public CmdLineException(CmdLineParser parser, Localizable message, String... args) {
super(message.formatWithLocale(Locale.ENGLISH, (Object[])args));
this.localizedMessage = message.format((Object[])args);
this.parser = parser;
}
/**
* @deprecated
* Use {@link #CmdLineException(org.kohsuke.args4j.CmdLineParser, Localizable, java.lang.String...) }
*/
public CmdLineException(CmdLineParser parser, String message) {
super(message);
this.parser = parser;
}
public CmdLineException(CmdLineParser parser, String message, Throwable cause) {
super(message, cause);
this.parser = parser;
}
public CmdLineException(CmdLineParser parser, Throwable cause) {
super(cause);
this.parser = parser;
}
@Override
public String getLocalizedMessage() {
if (localizedMessage != null) {
return localizedMessage;
} else {
return getMessage();
}
}
/**
* Obtains the {@link CmdLineParser} that triggered an exception.
*
*
* Unless you have legacy {@link OptionHandler} that doesn't pass in this information
* when it throws an exception, this method should always return a non-null value.
*/
public CmdLineParser getParser() {
return parser;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy