]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix serialization issue (#12703)
authorArtur Signell <artur@vaadin.com>
Fri, 18 Oct 2013 10:00:31 +0000 (13:00 +0300)
committerArtur Signell <artur@vaadin.com>
Fri, 18 Oct 2013 10:00:31 +0000 (13:00 +0300)
Change-Id: Ibdced8cdc3200ccfef2750e32fc8bf8dc544f1ae

server/src/com/vaadin/server/ErrorHandlingRunnable.java

index 8ae6ce3d5de9fd0bb6334380028bc3b281fad382..3970a14ee8adbb5d8e5489aa77f2efb80c00185e 100644 (file)
@@ -15,6 +15,8 @@
  */
 package com.vaadin.server;
 
+import java.io.Serializable;
+
 /**
  * Defines the interface to handle exceptions thrown during the execution of a
  * FutureAccess.
@@ -22,7 +24,7 @@ package com.vaadin.server;
  * @since 7.1.8
  * @author Vaadin Ltd
  */
-public interface ErrorHandlingRunnable extends Runnable {
+public interface ErrorHandlingRunnable extends Runnable, Serializable {
 
     /**
      * Handles exceptions thrown during the execution of a FutureAccess.