
com.github.nginate.commons.lang.await.ConditionTimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-lang Show documentation
Show all versions of commons-lang Show documentation
Misc utilities to hide most common boilerplate code. Requires jdk8 at least
The newest version!
/**
* Copyright © 2016
* Maksim Lozbin
* Oleksii Ihnachuk
*
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.
*/
package com.github.nginate.commons.lang.await;
/**
* Exception to be thrown if wait condition was not satisfied in provided period
*
* @since 1.0
*/
public class ConditionTimeoutException extends RuntimeException {
public ConditionTimeoutException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy