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

com.redis.spring.batch.util.AwaitTimeoutException Maven / Gradle / Ivy

The newest version!
package com.redis.spring.batch.util;

/**
 * A runtime exception thrown by Await when a condition was not fulfilled within
 * the specified threshold.
 *
 */
public class AwaitTimeoutException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	/**
	 * 

* Constructor for AwaitTimeoutException. *

* * @param message A description of why the timeout occurred. */ public AwaitTimeoutException(String message) { super(message); } /** *

* Constructor for AwaitTimeoutException. *

* * @param message A description of why the timeout occurred. * @param throwable The cause */ public AwaitTimeoutException(String message, Throwable throwable) { super(message, throwable); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy