001package co.codewizards.cloudstore.client;
002
003/**
004 * <p>
005 * {@link SubCommand} implementation for showing the help.
006 * </p>
007 * <p>
008 * Since the 'help' sub-command is currently handled by {@link CloudStoreClient} internally,
009 * this is a dummy class at the moment (just to show the 'help' in the help, for example).
010 * </p>
011 *
012 * @author Marco หงุ่ยตระกูล-Schulze - marco at nightlabs dot de
013 */
014public class HelpSubCommand extends SubCommand {
015
016        @Override
017        public String getSubCommandDescription() {
018                return "Get help.";
019        }
020
021        @Override
022        public void run() throws Exception {
023                throw new UnsupportedOperationException("The help command is handled by the CloudStoreClient itself.");
024        }
025
026}