com.joonsang.graylog.sdk.spring.starter.exception.GraylogServerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graylog-sdk-spring-boot-starter Show documentation
Show all versions of graylog-sdk-spring-boot-starter Show documentation
Graylog REST API SDK Spring Boot Starter
package com.joonsang.graylog.sdk.spring.starter.exception;
import java.io.IOException;
/**
* GraylogServerException will be produced when
* Graylog SDK fails communicating with Graylog server.
*
* @author debugrammer
* @since 1.1.0
*/
public class GraylogServerException extends IOException {
public GraylogServerException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy