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

org.entur.pubsub.base.EnturGooglePubSubException Maven / Gradle / Ivy

Go to download

Base configuration for Google PubSub clients, to be used for non-Camel clients. Camel-based clients should use camel-entur-google-pubsub instead.

There is a newer version: 3.0
Show newest version
package org.entur.pubsub.base;

public class EnturGooglePubSubException extends RuntimeException {

    public EnturGooglePubSubException(String message) {
        super(message);
    }

    public EnturGooglePubSubException(Exception cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy