
com.github.dakusui.cmd.exceptions.CommandException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cmd Show documentation
Show all versions of cmd Show documentation
Command line streamer library for Java 8
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