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

com.carrotsearch.console.jcommander.ParameterException 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;

/**
 * The main exception that JCommand will throw when something goes wrong while parsing parameters.
 *
 * @author Cedric Beust 
 */
@SuppressWarnings("serial")
public class ParameterException extends RuntimeException {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy