All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quali.cloudshell.qsExceptions.ExtendedSandboxApiException Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy