org.enodeframework.common.exception.AggregateRootCreateException Maven / Gradle / Ivy
package org.enodeframework.common.exception;
/**
* @author [email protected]
*/
public class AggregateRootCreateException extends EnodeException {
public AggregateRootCreateException() {
super();
}
public AggregateRootCreateException(String msg) {
super(msg);
}
public AggregateRootCreateException(Throwable cause) {
super(cause);
}
public AggregateRootCreateException(String msg, Throwable cause) {
super(msg, cause);
}
}