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

pro.jk.ejoker.eventing.eventingException.UnmatchEventVersionException Maven / Gradle / Ivy

There is a newer version: 3.0.7.1
Show newest version
package pro.jk.ejoker.eventing.eventingException;

public class UnmatchEventVersionException extends RuntimeException {

	private static final long serialVersionUID = 730075755177264830L;

	public UnmatchEventVersionException() { }

	public UnmatchEventVersionException(String message) {
		super(message);
	}

	public UnmatchEventVersionException(Throwable cause) {
		super(cause);
	}

	public UnmatchEventVersionException(String message, Throwable cause) {
		super(message, cause);
	}

	public UnmatchEventVersionException(String message, Throwable cause, boolean enableSuppression,
			boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy