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

javax.jmi.xmi.MalformedXMIException Maven / Gradle / Ivy

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

@SuppressWarnings("serial")
public class MalformedXMIException extends Exception {
    
    /**
     * Creates a new instance of MalformedXMIException without detail message.
     */
    public MalformedXMIException() {
    }
    
    
    /**
     * Constructs an instance of MalformedXMIException with the specified detail message.
     * @param msg the detail message.
     */
    public MalformedXMIException(String msg) {
        super(msg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy