com.github.mike10004.nativehelper.subprocess.ProcessStillAliveException Maven / Gradle / Ivy
package com.github.mike10004.nativehelper.subprocess;
/**
* Exception thrown when an attempt is made to kill a process within a
* timeout but the process is still alive after the timeout elapses.
*/
public class ProcessStillAliveException extends ProcessException {
public ProcessStillAliveException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy