javax.jmi.xmi.MalformedXMIException Maven / Gradle / Ivy
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);
}
}