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

io.highlight.sdk.exception.HighlightIllegalStateException Maven / Gradle / Ivy

package io.highlight.sdk.exception;

/**
 * 
 * Exception thrown when Highlight is already initialized and someone is trying
 * to initialize it again.
 */
public class HighlightIllegalStateException extends IllegalStateException {

	private static final long serialVersionUID = -9207374326290760484L;

	/**
	 * Constructs a new HighlightIllegalStateException with the given message.
	 * 
	 * @param message the detail message
	 */
	public HighlightIllegalStateException(String message) {
		super(message);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy