com.quali.cloudshell.qsExceptions.TeardownFailedException 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
package com.quali.cloudshell.qsExceptions;
public class TeardownFailedException extends SandboxApiException {
public TeardownFailedException(String sandbox, String message) {
super("Teardown Failed for sandbox: " + sandbox + ", with exception: " + message);
}
}