com.quali.cloudshell.qsExceptions.ExtendedSandboxApiException 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 ExtendedSandboxApiException extends SandboxApiException {
private String sandboxId;
public ExtendedSandboxApiException(String message, String sandboxId) {
super(message);
this.sandboxId = sandboxId;
}
public String getSandboxId() {
return sandboxId;
}
}