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

datahub.event.EventValidationException Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta2
Show newest version
package datahub.event;

public class EventValidationException extends RuntimeException {
  public EventValidationException(String message) {
    super(message);
  }
  public EventValidationException(String message, Throwable t) {
    super(message, t);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy