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

io.smallrye.reactive.messaging.providers.ProcessingException Maven / Gradle / Ivy

package io.smallrye.reactive.messaging.providers;

import static io.smallrye.reactive.messaging.providers.i18n.ProviderMessages.msg;

public class ProcessingException extends RuntimeException {
    public ProcessingException(String method, Throwable cause) {
        super(msg.methodCallingExceptionMessage(method), cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy