All Downloads are FREE. Search and download functionalities are using the official Maven repository.

i.GenericPredefinedException Maven / Gradle / Ivy

There is a newer version: 0.9.6
Show newest version
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