com.longport.OpenApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-sdk Show documentation
Show all versions of openapi-sdk Show documentation
LongPort OpenAPI SDK for Java
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