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

cn.hippo4j.starter.spi.ServiceLoaderInstantiationException Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.hippo4j.starter.spi;

/**
 * Service loader instantiation exception.
 *
 * @author chen.ma
 * @date 2021/7/10 23:48
 */
public class ServiceLoaderInstantiationException extends RuntimeException {

    public ServiceLoaderInstantiationException(final Class clazz, final Exception cause) {
        super(String.format("Can not find public default constructor for SPI class `%s`", clazz.getName()), cause);
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy