redis.embedded.exceptions.EmbeddedRedisException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of embedded-redis Show documentation
Show all versions of embedded-redis Show documentation
Redis embedded server for Java integration testing
package redis.embedded.exceptions;
/**
* Created by piotrturek on 22/01/15.
*/
public class EmbeddedRedisException extends RuntimeException {
public EmbeddedRedisException(String message, Throwable cause) {
super(message, cause);
}
public EmbeddedRedisException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy