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

com.longport.OpenApiException Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.longport;

public class OpenApiException extends Exception {
    private Long code;
    private String message;

    public OpenApiException(Long code, String message) {
        this.code = code;
        this.message = message;
    }

    public Long getCode() {
        return code;
    }

    public String getMessage() {
        return message;
    }

    @Override
    public String toString() {
        return "OpenApiException [code=" + code + ", message=" + message + "]";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy