com.moomoo.openapi.APIError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moomoo-api Show documentation
Show all versions of moomoo-api Show documentation
Moomoo OpenAPI quantitative transaction interface for Java.
The newest version!
package com.moomoo.openapi;
public class APIError extends RuntimeException {
public APIError() {
}
public APIError(String message) {
super(message);
}
public APIError(String message, Throwable cause) {
super(message, cause);
}
public APIError(Throwable cause) {
super(cause);
}
}