com.quali.cloudshell.qsExceptions.SandboxTimeoutException 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 SandboxTimeoutException extends SandboxApiException {
public SandboxTimeoutException(String sandboxId) {
super("Sandbox " + sandboxId + " reached the maximum timeout specified.");
}
}