All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.enodeframework.common.exception.DomainEventInvalidException Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy