org.enodeframework.common.exception.IdGenerateException 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 IdGenerateException extends RuntimeException {
private static final long serialVersionUID = -8951926710590746149L;
public IdGenerateException() {
super();
}
public IdGenerateException(Throwable throwable) {
super(throwable);
}
public IdGenerateException(String msg) {
super(msg);
}
public IdGenerateException(String msg, Throwable cause) {
super(msg, cause);
}
}