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

org.graylog2.sender.GelfSenderConfigurationException Maven / Gradle / Ivy

Go to download

GELF implementation in Java and log4j appender without any dependencies.

The newest version!
package org.graylog2.sender;

public class GelfSenderConfigurationException extends IllegalStateException {
	private static final long serialVersionUID = 1L;

	public GelfSenderConfigurationException(String message) {
		super(message);
	}

	public GelfSenderConfigurationException(String message, Exception cause) {
		super(message, cause);
	}

	public Exception getCauseException() {
		return (Exception) super.getCause();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy