org.enodeframework.common.exception.EnodeRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.common.exception;
/**
* @author [email protected]
*/
public class EnodeRuntimeException extends RuntimeException {
private static final long serialVersionUID = -8951926710590746149L;
public EnodeRuntimeException() {
super();
}
public EnodeRuntimeException(Throwable throwable) {
super(throwable);
}
public EnodeRuntimeException(String msg) {
super(msg);
}
public EnodeRuntimeException(String msg, Throwable cause) {
super(msg, cause);
}
}