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

JavaSpring.apiException.mustache Maven / Gradle / Ivy

There is a newer version: 0.9.25
Show newest version
package {{apiPackage}};

{{>generatedAnnotation}}
public class ApiException extends Exception{
    private int code;
    public ApiException (int code, String msg) {
        super(msg);
        this.code = code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy