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

javax.jmi.model.NameNotResolvedException Maven / Gradle / Ivy

There is a newer version: 2.18.10
Show newest version
package javax.jmi.model;

import javax.jmi.reflect.*;

@SuppressWarnings({"serial","rawtypes"})
public class NameNotResolvedException extends RefException {
    private final String explanation;
    private final java.util.List restOfName;
    public NameNotResolvedException(String explanation, java.util.List restOfName) {
        super("explanation: " + explanation + ", restOfName: " + restOfName);
        this.explanation = explanation;
        this.restOfName = restOfName;
    }
    public String getExplanation() {
        return explanation;
    }
    public java.util.List getRestOfName() {
        return restOfName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy