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

global.maplink.NoImplementationFoundException Maven / Gradle / Ivy

The newest version!
package global.maplink;

import lombok.Getter;

@Getter
public class NoImplementationFoundException extends RuntimeException {

    private final Class target;

    public NoImplementationFoundException(Class target) {
        super(String.format("No implementation found for [type: %s] in [classLoader: %s]", target.getName(), target.getClassLoader()));
        this.target = target;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy