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

top.wboost.common.system.exception.BeanNotFindException Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package top.wboost.common.system.exception;

public class BeanNotFindException extends SystemException {

    private static final long serialVersionUID = 1L;

    public BeanNotFindException(String beanName) {
        super("cant find bean:" + beanName + ",please check");
    }

    public BeanNotFindException(String beanName, Class clazz) {
        super("find bean:" + beanName + " but cant cast to " + clazz);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy