private Watchdog()

in src/main/java/org/apache/commons/exec/Watchdog.java [121:127]


    private Watchdog(final ThreadFactory threadFactory, final Duration timeout) {
        if (timeout.isNegative() || Duration.ZERO.equals(timeout)) {
            throw new IllegalArgumentException("timeout must not be less than 1.");
        }
        this.timeoutMillis = timeout.toMillis();
        this.threadFactory = threadFactory;
    }