org.bklab.flow.exception.consumer.IFluentExceptionMessageRender Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-vaadin-flow Show documentation
Show all versions of fluent-vaadin-flow Show documentation
Broderick Labs for fluent vaadin flow. Inherits common Vaadin components.
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