![JAR search and dependency download from the Maven repository](/logo.png)
com.founder.sdk.exception.RestException Maven / Gradle / Ivy
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