mesosphere.dcos.client.DCOSException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marathon-client Show documentation
Show all versions of marathon-client Show documentation
A Java API client for Mesosphere's Marathon.
package mesosphere.dcos.client;
import mesosphere.client.common.HttpResponseException;
public class DCOSException extends HttpResponseException {
private static final long serialVersionUID = 1L;
public DCOSException(int status, String message, String methodKey, String details) {
super(status, message, methodKey, details);
}
}