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

dev.soffa.foundation.error.PubSubException Maven / Gradle / Ivy

package dev.soffa.foundation.error;

public class PubSubException extends TechnicalException {

    private static final long serialVersionUID = 1L;

    public PubSubException(Throwable cause, String messsage, Object... args) {
        super(cause, messsage, args);
    }

    public PubSubException(String messsage, Object... args) {
        super(messsage, args);
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy