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

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

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

import javax.jmi.reflect.*;

@SuppressWarnings("serial")
public class NameNotFoundException extends RefException {
    private final String name;
    public NameNotFoundException(String name) {
        super("name: " + name);
        this.name = name;
    }
    public String getName() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy