org.entur.pubsub.base.EnturGooglePubSubException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of entur-google-pubsub Show documentation
Show all versions of entur-google-pubsub Show documentation
Base configuration for Google PubSub clients, to be used for non-Camel clients.
Camel-based clients should use camel-entur-google-pubsub instead.
package org.entur.pubsub.base;
public class EnturGooglePubSubException extends RuntimeException {
public EnturGooglePubSubException(String message) {
super(message);
}
public EnturGooglePubSubException(Exception cause) {
super(cause);
}
}