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

com.github.dakusui.cmd.exceptions.CommandException Maven / Gradle / Ivy

The newest version!
package com.github.dakusui.cmd.exceptions;

/**
 * An exception class to indicate an error is detected during command execution
 */
public abstract class CommandException extends RuntimeException {
  /**
   * Creates an object of this class.
   *
   * @param msg A message string to be set.
   * @param t   A nested exception
   */
  CommandException(String msg, Throwable t) {
    super(msg, t);
  }

  protected CommandException(Throwable throwable) {
    super(throwable);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy