com.hltech.store.EventStoreException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql-event-store-4j Show documentation
Show all versions of sql-event-store-4j Show documentation
Event store library to use with rdmbs database
The newest version!
package com.hltech.store;
public class EventStoreException extends RuntimeException {
public EventStoreException(String message) {
super(message);
}
public EventStoreException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy