org.enodeframework.common.exception.DomainEventInvalidException 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 DomainEventInvalidException extends RuntimeException {
public DomainEventInvalidException() {
super();
}
public DomainEventInvalidException(String msg) {
super(msg);
}
public DomainEventInvalidException(Throwable cause) {
super(cause);
}
public DomainEventInvalidException(String msg, Throwable cause) {
super(msg, cause);
}
}