
com.github.dakusui.cmd.exceptions.CommandTimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commandrunner Show documentation
Show all versions of commandrunner Show documentation
Command line runner library for Java
package com.github.dakusui.cmd.exceptions;
public class CommandTimeoutException extends CommandException {
/**
* Serial version UIT.x
*/
private static final long serialVersionUID = 6202136371314715671L;
public CommandTimeoutException() {
super();
}
public CommandTimeoutException(String msg) {
super(msg);
}
public CommandTimeoutException(Throwable t) {
super(t);
}
public CommandTimeoutException(String msg, Throwable t) {
super(msg, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy