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

org.coweb.CowebException Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version

package org.coweb;

public class CowebException extends RuntimeException {

	private String topic;

	public CowebException(String topic, String message) {
		super(message);
		this.topic = topic;
	}

	public String getMessage() {
		return "Topic: " + topic + ", " + super.getMessage();
	}

};





© 2015 - 2025 Weber Informatics LLC | Privacy Policy