seancarroll/fdb-java-es

View on GitHub
src/main/java/com/eventfully/foundationdb/eventstore/EventStoreDirectoryException.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.eventfully.foundationdb.eventstore;

/**
 *
 */
public class EventStoreDirectoryException extends RuntimeException {

    /**
     *
     * @param message
     */
    public EventStoreDirectoryException(String message, Throwable throwable) {
        super(message, throwable);
    }

}