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

no.finn.unleash.UnleashException Maven / Gradle / Ivy

There is a newer version: 4.4.1
Show newest version
package no.finn.unleash;

import no.finn.unleash.event.UnleashEvent;
import no.finn.unleash.event.UnleashSubscriber;

public class UnleashException extends RuntimeException implements UnleashEvent {

    public UnleashException(String message, Throwable cause) {
        super(message, cause);
    }

    @Override
    public void publishTo(UnleashSubscriber unleashSubscriber) {
        unleashSubscriber.onError(this);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy