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

org.headlessintrace.client.connection.DisconnectionException Maven / Gradle / Ivy

Go to download

A headless java API that collects events from other JVMs. Events=method invocations. Initial code taken from http://mchr3k.github.io/org.intrace/. Intended for building diagnostic applications.

There is a newer version: 0.0.4
Show newest version
package org.headlessintrace.client.connection;

public class DisconnectionException extends RuntimeException {

	private String m_message;

	public DisconnectionException(String disconnectionMessage) {
		m_message = disconnectionMessage;
	}
	@Override public String getMessage() {
		return m_message;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy