![JAR search and dependency download from the Maven repository](/logo.png)
com.github.ywilkof.sparkrestclient.FailedSparkRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spark-jobs-rest-client Show documentation
Show all versions of spark-jobs-rest-client Show documentation
Fluent utility client for interacting with Spark Standalone Mode's Rest API for submitting, killing and monitoring the state of jobs.
package com.github.ywilkof.sparkrestclient;
import lombok.Getter;
/**
* Created by yonatan on 08.10.15.
*/
public final class FailedSparkRequestException extends Exception {
@Getter
private DriverState state;
public FailedSparkRequestException(String message) {
super(message);
}
public FailedSparkRequestException(String message, DriverState driverstate) {
super(message);
this.state = driverstate;
}
public FailedSparkRequestException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy