com.quali.cloudshell.qsExceptions.InvalidApiCallException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sandbox-api Show documentation
Show all versions of sandbox-api Show documentation
CloudShell Sandbox java gateway project
The newest version!
package com.quali.cloudshell.qsExceptions;
public class InvalidApiCallException extends SandboxApiException {
public InvalidApiCallException(String request) {
super("Invalid API Call, make sure you are using API version that supports your request: " + request);
}
}