package org.simplx.args; /** * Signals that this was a "help only" invocation. The program is expected to * catch this and simply exit successfully. * * @author Ken Arnold */ public class HelpOnlyException extends RuntimeException { private static final long serialVersionUID = -8973201446772368025L; /** Creates a new {@code HelpOnlyException} with a descriptive string. */ public HelpOnlyException() { super("User only asked for help"); } }