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

net.sf.juffrou.reflect.error.AbstractRuntimeException Maven / Gradle / Ivy

Go to download

Performant java bean access through property names. If you are serious about bean handling, this is for you.

There is a newer version: 2.1.9
Show newest version
package net.sf.juffrou.reflect.error;

public abstract class AbstractRuntimeException extends RuntimeException {

	private static final long serialVersionUID = -270201609986216950L;

	public AbstractRuntimeException() {
		super();
	}

	public AbstractRuntimeException(String message, Throwable cause) {
		super(message + (cause != null ? "==>" + cause.getMessage() : ""), cause);
	}

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

	public AbstractRuntimeException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy