![JAR search and dependency download from the Maven repository](/logo.png)
com.sumologic.client.SumoServerErrors Maven / Gradle / Ivy
package com.sumologic.client;
/**
* General sumo API web service errors.
*
* @author Sebastian Mies
* @version 1.0
*/
public enum SumoServerErrors implements SumoServerError {
INTERNAL_SERVER_ERROR("internal.error"),
UNAUTHORIZED("unauthorized"),
UNAVAILABLE("service.unavailable");
private String id = "";
SumoServerErrors(String id) {
this.id = id;
}
public String getId() {
return id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy