Skip to content

Commit

Permalink
fix: make ErrorWindowI18n serializable
Browse files Browse the repository at this point in the history
Close #77
  • Loading branch information
javier-godoy authored and mlopezFC committed Apr 3, 2024
1 parent 18cf41d commit 725b000
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@
package com.flowingcode.vaadin.addons.errorwindow;

import com.vaadin.flow.function.SerializableFunction;
import java.io.Serializable;

/**
* Internationalization object for customizing the component UI texts. An instance with the default
* messages can be obtained using {@link ErrorWindowI18n#createDefault()}.
*
* @author [email protected]
*/
public class ErrorWindowI18n {
@SuppressWarnings("serial")
public class ErrorWindowI18n implements Serializable {

private String caption;
private String instructions;
Expand Down

0 comments on commit 725b000

Please sign in to comment.