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

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

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