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

org.xipki.shell.IllegalCmdParamException Maven / Gradle / Ivy

There is a newer version: 6.3.4
Show newest version
// Copyright (c) 2013-2023 xipki. All rights reserved.
// License Apache License 2.0

package org.xipki.shell;

/**
 * Exception for illegal action parameters / options.
 *
 * @author Lijun Liao (xipki)
 * @since 2.0.0
 */

public class IllegalCmdParamException extends Exception {

  public IllegalCmdParamException() {
  }

  public IllegalCmdParamException(String message) {
    super(message);
  }

  public IllegalCmdParamException(Throwable cause) {
    super(cause);
  }

  public IllegalCmdParamException(String message, Throwable cause) {
    super(message, cause);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy