io.leoplatform.sdk.bus.FailureBot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leo-api Show documentation
Show all versions of leo-api Show documentation
SDK for LEO Insights platform
The newest version!
package io.leoplatform.sdk.bus;
import java.util.List;
public class FailureBot implements EnrichmentBot {
@Override
public StreamQueue source() {
throw new IllegalArgumentException("Attempt to use a bot when one was not created");
}
@Override
public StreamQueue destination() {
throw new IllegalArgumentException("Attempt to use a bot when one was not created");
}
@Override
public String name() {
throw new IllegalArgumentException("Attempt to use a bot when one was not created");
}
@Override
public List tags() {
throw new IllegalArgumentException("Attempt to use a bot when one was not created");
}
@Override
public String description() {
throw new IllegalArgumentException("Attempt to use a bot when one was not created");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy