net.sf.juffrou.error.AbstractRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of juffrou-reflect Show documentation
Show all versions of juffrou-reflect Show documentation
Performant java bean access through property names. If you are serious about bean handling, this is for you.
package net.sf.juffrou.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);
}
}