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

com.founder.sdk.exception.RestException Maven / Gradle / Ivy

There is a newer version: 3.6.1.9
Show newest version
package com.founder.sdk.exception;

public class RestException extends RuntimeException {
    private int errorCode;

    public RestException(int errorCode, String message) {
        super(errorCode + ", " + message);
        this.errorCode = errorCode;
    }

    public int getErrorCode() {
        return this.errorCode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy