eleme.openapi.sdk.api.exception.MethodNotAllowedException Maven / Gradle / Ivy
package eleme.openapi.sdk.api.exception;
public class MethodNotAllowedException extends ServiceException {
public MethodNotAllowedException() {
super("METHOD_NOT_ALLOWED", "禁止访问");
}
public MethodNotAllowedException(String message) {
super("METHOD_NOT_ALLOWED", message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy