All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carrotsearch.console.jcommander.MissingCommandException Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
/*
 * console-tools
 *
 * Copyright (C) 2019, Carrot Search s.c.
 * All rights reserved.
 */
package com.carrotsearch.console.jcommander;

/**
 * Thrown when a command was expected.
 *
 * @author Cedric Beust 
 */
@SuppressWarnings("serial")
public class MissingCommandException extends ParameterException {

  public MissingCommandException(String string) {
    super(string);
  }

  public MissingCommandException(Throwable t) {
    super(t);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy