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

org.bklab.flow.exception.consumer.IFluentExceptionMessageRender Maven / Gradle / Ivy

There is a newer version: 22.0.1
Show newest version
package org.bklab.flow.exception.consumer;


public interface IFluentExceptionMessageRender {

    String header();

    String[] className();

    String message(Exception exception);

    default String[] classNames(String... classNames) {
        return classNames;
    }

    default String createHeader(int code, String message) {
        return code + " - " + message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy