com.quali.cloudshell.qsExceptions.ReserveBluePrintConflictException 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 ReserveBluePrintConflictException extends SandboxApiException {
private String bluePrintIdentifier;
public ReserveBluePrintConflictException(String bluePrintIdentifier, String message) {
super("Blueprint: " + bluePrintIdentifier + " throw conflict exception: " + message);
}
public String getBluePrintIdentifier() {
return bluePrintIdentifier;
}
}