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

net.osomahe.esk.eventstore.entity.EventNotPublishedException Maven / Gradle / Ivy

The newest version!
package net.osomahe.esk.eventstore.entity;

/**
 * Exception when publishing of an event failed.
 *
 * @author Antonin Stoklasek
 */
public class EventNotPublishedException extends RuntimeException {

    private final EventStoreEvent event;

    public EventNotPublishedException(EventStoreEvent event) {
        this.event = event;
    }

    public EventStoreEvent getEvent() {
        return event;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy