commonsrc.ingenias.editor.events.WrongParent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
The INGENIAS Meta-Editor core. It is a set of facilities to generate an editor from a detailed xml description
package ingenias.editor.events;
public class WrongParent extends Exception {
public WrongParent() {
super();
// TODO Auto-generated constructor stub
}
public WrongParent(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
public WrongParent(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public WrongParent(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public WrongParent(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
}