![JAR search and dependency download from the Maven repository](/logo.png)
com.founder.sdk.exception.ServerException Maven / Gradle / Ivy
package com.founder.sdk.exception;
public class ServerException extends RuntimeException {
private FuncRetCode funcRetCode;
public ServerException(FuncRetCode funcRetCode) {
super(funcRetCode.getMessage());
this.funcRetCode = funcRetCode;
}
public FuncRetCode getFuncRetCode() {
return this.funcRetCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy