i.GenericPredefinedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee-rt Show documentation
Show all versions of javaee-rt Show documentation
An Execution Environment for Java SCOREs
package i;
import foundation.icon.ee.types.PredefinedException;
public class GenericPredefinedException extends PredefinedException {
private int code;
public GenericPredefinedException() {
super();
}
public GenericPredefinedException(int code) {
super();
this.code = code;
}
public GenericPredefinedException(int code, String message) {
super(message);
this.code = code;
}
public GenericPredefinedException(int code, String message, Throwable cause) {
super(message, cause);
this.code = code;
}
public GenericPredefinedException(int code, Throwable cause) {
super(cause);
this.code = code;
}
public int getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy