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

org.buildobjects.process.TimeoutException Maven / Gradle / Ivy

There is a newer version: 2.8.2
Show newest version
package org.buildobjects.process;


/** Signals a timeout */
public class TimeoutException extends RuntimeException {
    TimeoutException(String s, long timeout) {
        super("Process '" + s + "' timed out after " + timeout + "ms.");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy