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

net.ravendb.client.exceptions.documents.subscriptions.SubscriptionException Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package net.ravendb.client.exceptions.documents.subscriptions;

import net.ravendb.client.exceptions.RavenException;

public abstract class SubscriptionException extends RavenException {
    protected SubscriptionException(String message) {
        super(message);
    }

    protected SubscriptionException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy