io.kestra.plugin.airbyte.connections.SyncAlreadyRunningException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-airbyte Show documentation
Show all versions of plugin-airbyte Show documentation
Seamlessly integrate Airbyte connectors into your Kestra workflows.
The newest version!
package io.kestra.plugin.airbyte.connections;
public class SyncAlreadyRunningException extends Exception {
public SyncAlreadyRunningException(String errorMessage) {
super(errorMessage);
}
}