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

com.trendyol.mpc.kafkathena.commons.model.exception.KSException Maven / Gradle / Ivy

package com.trendyol.mpc.kafkathena.commons.model.exception;

import lombok.Builder;

public class KSException extends RuntimeException {
    @Builder
    public KSException(String message) {
        super(message);
    }

    @Builder
    public KSException(String message, Throwable cause) {
        super(message, cause);
    }

    @Override
    public String getMessage() {
        return "Kafkathena: ".concat(super.getMessage());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy