| | |
| | | import org.opends.server.util.args.IntegerArgument; |
| | | import org.opends.server.util.args.LDAPConnectionArgumentParser; |
| | | import org.opends.server.util.args.StringArgument; |
| | | import org.opends.server.util.cli.CLIException; |
| | | |
| | | |
| | | |
| | |
| | | err.println(argParser.getUsage()); |
| | | return 1; |
| | | } |
| | | catch (CLIException ce) |
| | | { |
| | | // No need to display the usage since the problem comes with a provided |
| | | // value. |
| | | err.println(wrapText(ce.getMessageObject(), MAX_LINE_WIDTH)); |
| | | return 1; |
| | | } |
| | | |
| | | |
| | | // If we should just display usage or version information, |