
ingenias.exception.CannotLoadDiagram Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codegen Show documentation
Show all versions of codegen Show documentation
The INGENIAS Development Kit
package ingenias.exception;
public class CannotLoadDiagram extends Exception {
public CannotLoadDiagram() {
}
public CannotLoadDiagram(String message) {
super(message);
}
public CannotLoadDiagram(String message, Throwable cause) {
super(message, cause);
}
public CannotLoadDiagram(Throwable cause) {
super(cause);
}
public static void main(String[] args) {
CannotLoadDiagram cannotLoadDiagram1 = new CannotLoadDiagram();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy