We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18cf41d commit 725b000Copy full SHA for 725b000
src/main/java/com/flowingcode/vaadin/addons/errorwindow/ErrorWindowI18n.java
@@ -22,14 +22,16 @@
22
package com.flowingcode.vaadin.addons.errorwindow;
23
24
import com.vaadin.flow.function.SerializableFunction;
25
+import java.io.Serializable;
26
27
/**
28
* Internationalization object for customizing the component UI texts. An instance with the default
29
* messages can be obtained using {@link ErrorWindowI18n#createDefault()}.
30
*
31
* @author michael.knigge@gmx.de
32
*/
-public class ErrorWindowI18n {
33
+@SuppressWarnings("serial")
34
+public class ErrorWindowI18n implements Serializable {
35
36
private String caption;
37
private String instructions;
0 commit comments