org.crazycake.shiro.exception.PoolException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shiro-redis Show documentation
Show all versions of shiro-redis Show documentation
shiro only provide the support of ehcache and
concurrentHashMap. Here is an implement of redis cache can be used by
shiro. Hope it will help you!
The newest version!
package org.crazycake.shiro.exception;
/**
* @author Teamo
* @since 2022/05/18
*/
public class PoolException extends RuntimeException {
/**
* Constructs a new LettucePoolException
instance.
*
* @param msg the detail message.
*/
public PoolException(String msg) {
super(msg);
}
/**
* Constructs a new LettucePoolException
instance.
*
* @param msg the detail message.
* @param cause the nested exception.
*/
public PoolException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy