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

io.leoplatform.sdk.bus.FailureBot Maven / Gradle / Ivy

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