ingenias.exception.CannotLoad 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 CannotLoad extends Exception {
public CannotLoad() {
}
public CannotLoad(String message) {
super(message);
}
public CannotLoad(String message, Throwable cause) {
super(message, cause);
}
public CannotLoad(Throwable cause) {
super(cause);
}
public static void main(String[] args) {
CannotLoad cannotLoad1 = new CannotLoad();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy