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