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

pl.jalokim.utils.reflection.UnresolvedRealClassException Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package pl.jalokim.utils.reflection;

/**
 * Exception thrown when cannot resolve some generic type to real class.
 */
public class UnresolvedRealClassException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public UnresolvedRealClassException(String message, UnresolvedRealClassException cause) {
        super(message, cause);
    }

    public UnresolvedRealClassException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy