Merge tag 'v2.3.28' into testing
[lgpl/argeo-commons.git] / org.argeo.api.cli / src / org / argeo / api / cli / PrintHelpRequestException.java
diff --git a/org.argeo.api.cli/src/org/argeo/api/cli/PrintHelpRequestException.java b/org.argeo.api.cli/src/org/argeo/api/cli/PrintHelpRequestException.java
deleted file mode 100644 (file)
index 017386b..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-package org.argeo.api.cli;
-
-/** An exception indicating that help should be printed. */
-class PrintHelpRequestException extends RuntimeException {
-
-       private static final long serialVersionUID = -9029122270660656639L;
-
-       private String commandName;
-       private volatile CommandsCli commandsCli;
-
-       public PrintHelpRequestException(String commandName, CommandsCli commandsCli) {
-               super();
-               this.commandName = commandName;
-               this.commandsCli = commandsCli;
-       }
-
-       public static long getSerialversionuid() {
-               return serialVersionUID;
-       }
-
-       public String getCommandName() {
-               return commandName;
-       }
-
-       public CommandsCli getCommandsCli() {
-               return commandsCli;
-       }
-
-}